La Gpu con 112 livelli � inutilizzabile, possiamo dividere in integrata e dedicata, oppure dividere per le marche.
@Dario: Per la gpu farei innanzitutto una divisione tra integrata e dedicata, e tra quelle dedicate le suddividerei per VRAM (inizialmente pensavo di cercare dei prezzi per avere una stima quantitativa di quanto valga la gpu dedicata, però bisognerebbe cercare prezzi medi e visto che i modelli son tanti mi pare troppo lavoro e non chissà quanto significativo)
Anche la memoria � problematica, ho gi� estratto la presenza o meno dell’SSD, ma bisogna pensare ad un modo di valutare la memoria.
@Dario: ottimo la divisione SSD/HD, per avere un indicazione quantitativa potremmo cercare il prezzo di un gb di SSD e di un gb di HD da una fonte affidabile, e pesare l’importanza delle dimensioni su questo indicatore, che ne dite?
data <- read.csv("../data/Laptop2.csv")
str(data)
## 'data.frame': 1303 obs. of 17 variables:
## $ X : int 1 2 3 4 5 6 7 8 9 10 ...
## $ Company : Factor w/ 19 levels "Acer","Apple",..: 2 2 8 2 2 1 2 2 3 1 ...
## $ Product : Factor w/ 618 levels "110-15ACL (A6-7310/4GB/500GB/W10)",..: 302 300 51 302 302 59 302 300 615 431 ...
## $ TypeName : Factor w/ 6 levels "2 in 1 Convertible",..: 5 5 4 5 5 4 5 5 5 5 ...
## $ Inches : num 13.3 13.3 15.6 15.4 13.3 15.6 15.4 13.3 14 14 ...
## $ ScreenResolution: Factor w/ 40 levels "1366x768","1440x900",..: 24 2 9 26 24 1 26 2 9 16 ...
## $ Cpu : Factor w/ 118 levels "AMD A10-Series 9600P 2.4GHz",..: 55 53 64 75 57 15 74 53 96 73 ...
## $ Ram : int 8 8 8 16 8 4 16 8 16 8 ...
## $ Memory : Factor w/ 39 levels "1.0TB HDD","1.0TB Hybrid",..: 5 3 17 30 17 27 16 16 30 17 ...
## $ Gpu : Factor w/ 110 levels "AMD FirePro W4190M",..: 59 52 54 10 60 18 61 52 98 62 ...
## $ OpSys : Factor w/ 9 levels "Android","Chrome OS",..: 5 5 6 5 5 7 4 5 7 7 ...
## $ Weight : num 1.37 1.34 1.86 1.83 1.37 2.1 2.04 1.34 1.3 1.6 ...
## $ Price : num 1340 899 575 2537 1804 ...
## $ Frequenza : num 2.3 1.8 2.5 2.7 3.1 3 2.2 1.8 1.8 1.6 ...
## $ Risoluzione : Factor w/ 15 levels "1366x768","1440x900",..: 11 2 4 13 11 1 13 2 4 4 ...
## $ Pixel : int 4096000 1296000 2073600 5184000 4096000 1049088 5184000 1296000 2073600 2073600 ...
## $ SolidStateDisk : Factor w/ 2 levels "False","True": 2 1 2 2 2 1 1 1 2 2 ...
head(data)
## X Company Product TypeName Inches
## 1 1 Apple MacBook Pro Ultrabook 13.3
## 2 2 Apple Macbook Air Ultrabook 13.3
## 3 3 HP 250 G6 Notebook 15.6
## 4 4 Apple MacBook Pro Ultrabook 15.4
## 5 5 Apple MacBook Pro Ultrabook 13.3
## 6 6 Acer Aspire 3 Notebook 15.6
## ScreenResolution Cpu Ram
## 1 IPS Panel Retina Display 2560x1600 Intel Core i5 2.3GHz 8
## 2 1440x900 Intel Core i5 1.8GHz 8
## 3 Full HD 1920x1080 Intel Core i5 7200U 2.5GHz 8
## 4 IPS Panel Retina Display 2880x1800 Intel Core i7 2.7GHz 16
## 5 IPS Panel Retina Display 2560x1600 Intel Core i5 3.1GHz 8
## 6 1366x768 AMD A9-Series 9420 3GHz 4
## Memory Gpu OpSys Weight
## 1 128GB SSD Intel Iris Plus Graphics 640 macOS 1.37
## 2 128GB Flash Storage Intel HD Graphics 6000 macOS 1.34
## 3 256GB SSD Intel HD Graphics 620 No OS 1.86
## 4 512GB SSD AMD Radeon Pro 455 macOS 1.83
## 5 256GB SSD Intel Iris Plus Graphics 650 macOS 1.37
## 6 500GB HDD AMD Radeon R5 Windows 10 2.10
## Price Frequenza Risoluzione Pixel SolidStateDisk
## 1 1339.69 2.3 2560x1600 4096000 True
## 2 898.94 1.8 1440x900 1296000 False
## 3 575.00 2.5 1920x1080 2073600 True
## 4 2537.45 2.7 2880x1800 5184000 True
## 5 1803.60 3.1 2560x1600 4096000 True
## 6 400.00 3.0 1366x768 1049088 False
summary(data)
## X Company Product
## Min. : 1.0 Dell :297 XPS 13 : 30
## 1st Qu.: 331.5 Lenovo :297 Inspiron 3567 : 29
## Median : 659.0 HP :274 250 G6 : 21
## Mean : 660.2 Asus :158 Legion Y520-15IKBN: 19
## 3rd Qu.: 990.5 Acer :103 Vostro 3568 : 19
## Max. :1320.0 MSI : 54 Inspiron 5570 : 18
## (Other):120 (Other) :1167
## TypeName Inches
## 2 in 1 Convertible:121 Min. :10.10
## Gaming :205 1st Qu.:14.00
## Netbook : 25 Median :15.60
## Notebook :727 Mean :15.02
## Ultrabook :196 3rd Qu.:15.60
## Workstation : 29 Max. :18.40
##
## ScreenResolution
## Full HD 1920x1080 :507
## 1366x768 :281
## IPS Panel Full HD 1920x1080 :230
## IPS Panel Full HD / Touchscreen 1920x1080: 53
## Full HD / Touchscreen 1920x1080 : 47
## 1600x900 : 23
## (Other) :162
## Cpu Ram
## Intel Core i5 7200U 2.5GHz :190 Min. : 2.000
## Intel Core i7 7700HQ 2.8GHz:146 1st Qu.: 4.000
## Intel Core i7 7500U 2.7GHz :134 Median : 8.000
## Intel Core i7 8550U 1.8GHz : 73 Mean : 8.382
## Intel Core i5 8250U 1.6GHz : 72 3rd Qu.: 8.000
## Intel Core i5 6200U 2.3GHz : 68 Max. :64.000
## (Other) :620
## Memory Gpu
## 256GB SSD :412 Intel HD Graphics 620 :281
## 1TB HDD :223 Intel HD Graphics 520 :185
## 500GB HDD :132 Intel UHD Graphics 620 : 68
## 512GB SSD :118 Nvidia GeForce GTX 1050: 66
## 128GB SSD + 1TB HDD: 94 Nvidia GeForce GTX 1060: 48
## 128GB SSD : 76 Nvidia GeForce 940MX : 43
## (Other) :248 (Other) :612
## OpSys Weight Price Frequenza
## Windows 10:1072 Min. :0.690 Min. : 174 Min. :0.900
## No OS : 66 1st Qu.:1.500 1st Qu.: 599 1st Qu.:2.000
## Linux : 62 Median :2.040 Median : 977 Median :2.500
## Windows 7 : 45 Mean :2.039 Mean :1124 Mean :2.299
## Chrome OS : 27 3rd Qu.:2.300 3rd Qu.:1488 3rd Qu.:2.700
## macOS : 13 Max. :4.700 Max. :6099 Max. :3.600
## (Other) : 18
## Risoluzione Pixel SolidStateDisk
## 1920x1080:841 Min. :1049088 False:460
## 1366x768 :308 1st Qu.:1440000 True :843
## 3840x2160: 43 Median :2073600
## 3200x1800: 27 Mean :2168807
## 1600x900 : 23 3rd Qu.:2073600
## 2560x1440: 23 Max. :8294400
## (Other) : 38
nums <- sapply(data, is.numeric)
var_numeric <- data[,nums]
head(var_numeric)
## X Inches Ram Weight Price Frequenza Pixel
## 1 1 13.3 8 1.37 1339.69 2.3 4096000
## 2 2 13.3 8 1.34 898.94 1.8 1296000
## 3 3 15.6 8 1.86 575.00 2.5 2073600
## 4 4 15.4 16 1.83 2537.45 2.7 5184000
## 5 5 13.3 8 1.37 1803.60 3.1 4096000
## 6 6 15.6 4 2.10 400.00 3.0 1049088
data$Weight<-as.numeric(data$Weight)
data$Ram<-as.numeric(data$Ram)
sapply(data, function(x)(sum(is.na(x))))
## X Company Product TypeName
## 0 0 0 0
## Inches ScreenResolution Cpu Ram
## 0 0 0 0
## Memory Gpu OpSys Weight
## 0 0 0 0
## Price Frequenza Risoluzione Pixel
## 0 0 0 0
## SolidStateDisk
## 0
# Non ci sono missing data!
plot(data$Company,data$Price)
class(data$Ram)
## [1] "numeric"
plot(density(data$Frequenza))
#hist(data$Price, breaks=25, probability=TRUE)
#lines(density(data$Price))
library(ggplot2)
## Registered S3 methods overwritten by 'ggplot2':
## method from
## [.quosures rlang
## c.quosures rlang
## print.quosures rlang
ggplot(data,aes(x = Price)) +
geom_histogram(aes(y =..density..),
bins= 25,
fill = "grey",
color ="black") +
geom_vline(xintercept = quantile(data$Price, 0.50), color = "dark red", lty = 2) +
geom_vline(xintercept = mean(data$Price), color = "dark blue", lty = 2) +
labs(x = "Price", y ="Density") +
ggtitle("Price Distribution with mean and median") +
geom_density()
Quite skewed to the right, mean > media
We could try to apply a correction like Log(Y)
data$LogPrice=log(data$Price)
ggplot(data,aes(x = log(Price))) +
geom_histogram(aes(y =..density..),
bins= 25,
fill = "grey",
color ="black") +
geom_vline(xintercept = quantile(data$LogPrice, 0.50), color = "dark red", lty = 2) +
geom_vline(xintercept = mean(data$LogPrice), color = "dark blue", lty = 2) +
labs(x = "log(Price)", y ="Density") +
ggtitle("log(Price) Distribution with mean and median")+ geom_density()
Now the distribution is looking a bit better (as regards normality)
ggplot(data,aes(x = Price)) +
geom_histogram(aes(y =..density..),
bins= 25,
fill = "grey",
color ="black") +
geom_vline(xintercept = mean(data$Price), color = "dark red") +
geom_vline(xintercept = mean(data$Price) + sd(data$Price), color = "dark red", lty = 2) +
geom_vline(xintercept = mean(data$Price) - sd(data$Price), color = "dark red", lty = 2) +
labs(x = "Price", y ="Density") +
ggtitle("Price Distribution (mean +/- sd)") +
geom_density()
ggplot(data,aes(x = log(Price))) +
geom_histogram(aes(y =..density..),
bins= 25,
fill = "grey",
color ="black") +
geom_vline(xintercept = mean(data$LogPrice), color = "dark red") +
geom_vline(xintercept = mean(data$LogPrice) + sd(data$LogPrice), color = "dark red", lty = 2) +
geom_vline(xintercept = mean(data$LogPrice) - sd(data$LogPrice), color = "dark red", lty = 2) +
labs(x = "log(Price)", y ="Density") +
ggtitle("log(Price) Distribution (mean +/- sd)") +
geom_density()
ggplot(data,aes(x = Price)) +
geom_histogram(aes(y =..density..),
bins= 25,
fill = "grey",
color ="black") +
geom_vline(xintercept = quantile(data$Price, 0.25), color = "dark red",lty = 2) +
geom_vline(xintercept = quantile(data$Price, 0.5), color = "dark red", ) +
geom_vline(xintercept = quantile(data$Price, 0.75), color = "dark red", lty = 2) +
labs(x = "Price", y ="Density") +
ggtitle("Price Distribution (quartiles)") +
geom_density()
ggplot(data,aes(x = log(Price))) +
geom_histogram(aes(y =..density..),
bins= 25,
fill = "grey",
color ="black") +
geom_vline(xintercept = quantile(data$LogPrice, 0.25), color = "dark red",lty = 2) +
geom_vline(xintercept = quantile(data$LogPrice, 0.5), color = "dark red", ) +
geom_vline(xintercept = quantile(data$LogPrice, 0.75), color = "dark red", lty = 2) +
labs(x = "log(Price)", y ="Density") +
ggtitle("log(Price) Distribution (quartiles)") +
geom_density()
Descrittive variabile dipendente price
ggplot(data, aes(x = Price, fill = TypeName)) +
geom_density(size = 0.6, alpha = .3) +
labs(x = "Price", y ="Density", fill = "TypeName") +
ggtitle("Price Density Distribution For TypeName")
ggplot(data, aes(x = log(Price), fill = TypeName)) +
geom_density(size = 0.6, alpha = .3) +
labs(x = "log(Price)", y ="Density", fill = "TypeName") +
ggtitle("log(Price) Density Distribution For TypeName")
ggplot(data, aes(x = Price, fill = SolidStateDisk)) +
geom_density(size = 0.6, alpha = .3) +
labs(x = "Price", y ="Density", fill = "SolidStateDisk") +
ggtitle("Price Density Distribution For SolidStateDisk")
ggplot(data, aes(x = log(Price), fill = SolidStateDisk)) +
geom_density(size = 0.6, alpha = .3) +
labs(x = "log(Price)", y ="Density", fill = "SolidStateDisk") +
ggtitle("log(Price) Density Distribution For SolidStateDisk")
library(psych)
##
## Attaching package: 'psych'
## The following objects are masked from 'package:ggplot2':
##
## %+%, alpha
describe(data$Price)
## vars n mean sd median trimmed mad min max range skew
## X1 1 1303 1123.69 699.01 977 1038.47 619.73 174 6099 5925 1.52
## kurtosis se
## X1 4.34 19.36
library(nortest)
# NORMALITA'
boxplot(data$Price)
qqnorm(data$Price);qqline(data$Price)
shapiro.test(data$Price)
##
## Shapiro-Wilk normality test
##
## data: data$Price
## W = 0.89382, p-value < 2.2e-16
ad.test(data$Price)
##
## Anderson-Darling normality test
##
## data: data$Price
## A = 28.319, p-value < 2.2e-16
#wilcox.test(data$Price, conf.int = TRUE, mu = ) #worth it?
#if(!require(Envstats)) install.packages("EnvStats")
library(EnvStats)
##
## Attaching package: 'EnvStats'
## The following objects are masked from 'package:stats':
##
## predict, predict.lm
## The following object is masked from 'package:base':
##
## print.default
varTest(sample(data$Price), sigma.squared = (sd(data$Price)*sd(data$Price)))
##
## Chi-Squared Test on Variance
##
## data: sample(data$Price)
## Chi-Squared = 1302, df = 1302, p-value = 0.9896
## alternative hypothesis: true variance is not equal to 488613.6
## 95 percent confidence interval:
## 453149.5 528432.0
## sample estimates:
## variance
## 488613.6
Trying with the log correction:
# Correzione NORMALITA'
library(nortest)
boxplot(data$LogPrice)
qqnorm(data$LogPrice);qqline(data$LogPrice)
shapiro.test(data$LogPrice) #better than before, but still not normal according to shapiro
##
## Shapiro-Wilk normality test
##
## data: data$LogPrice
## W = 0.99252, p-value = 3.628e-06
ad.test(data$LogPrice)
##
## Anderson-Darling normality test
##
## data: data$LogPrice
## A = 2.5942, p-value = 1.515e-06
T-test
# One sample
ref <- mean(data$Price)
Apple<-data$Price[data$Company=="Apple"]
t.test(Apple,mu=ref,alternative = "greater")
##
## One Sample t-test
##
## data: Apple
## t = 3.5944, df = 20, p-value = 0.000906
## alternative hypothesis: true mean is greater than 1123.687
## 95 percent confidence interval:
## 1352.823 Inf
## sample estimates:
## mean of x
## 1564.199
# Wilcoxon Signed Rank Test
wilcox.test(Apple, mu=ref, conf.int = TRUE)
##
## Wilcoxon signed rank test
##
## data: Apple
## V = 206, p-value = 0.0008516
## alternative hypothesis: true location is not equal to 1123.687
## 95 percent confidence interval:
## 1234.50 1829.26
## sample estimates:
## (pseudo)median
## 1514.275
#Two sample
Other <-data$Price[data$Company!="Apple"]
wilcox.test(Apple, Other, alternative = "g")
##
## Wilcoxon rank sum test with continuity correction
##
## data: Apple and Other
## W = 19689, p-value = 0.0001358
## alternative hypothesis: true location shift is greater than 0
# F test sulla varianza
var.test(Apple, Other, alternative = "two.sided")
##
## F test to compare two variances
##
## data: Apple and Other
## F = 0.64574, num df = 20, denom df = 1281, p-value = 0.2401
## alternative hypothesis: true ratio of variances is not equal to 1
## 95 percent confidence interval:
## 0.3755878 1.3509884
## sample estimates:
## ratio of variances
## 0.6457382
Variabili qualitative: tabella di contingenza e chi quadro
b<-data
b.table<-table(b$SolidStateDisk,b$TypeName)
b.table
##
## 2 in 1 Convertible Gaming Netbook Notebook Ultrabook Workstation
## False 26 27 13 372 16 6
## True 95 178 12 355 180 23
prop.table(b.table,2)
##
## 2 in 1 Convertible Gaming Netbook Notebook Ultrabook
## False 0.21487603 0.13170732 0.52000000 0.51169188 0.08163265
## True 0.78512397 0.86829268 0.48000000 0.48830812 0.91836735
##
## Workstation
## False 0.20689655
## True 0.79310345
# chi square test
chisq.test(b.table)
##
## Pearson's Chi-squared test
##
## data: b.table
## X-squared = 203.18, df = 5, p-value < 2.2e-16
chi=chisq.test(b.table)
chi_norm=chi$statistic/(nrow(b)*min(nrow(b.table)-1,ncol(b.table)-1))
chi_norm
## X-squared
## 0.1559288
summary(b.table)
## Number of cases in table: 1303
## Number of factors: 2
## Test for independence of all factors:
## Chisq = 203.18, df = 5, p-value = 5.944e-42
Correlazione per variabili quantitative
# seleziona solo variabili quantitative
nums <- sapply(data, is.numeric)
var_numeric <- data[,nums]
head(var_numeric)
## X Inches Ram Weight Price Frequenza Pixel LogPrice
## 1 1 13.3 8 1.37 1339.69 2.3 4096000 7.200194
## 2 2 13.3 8 1.34 898.94 1.8 1296000 6.801216
## 3 3 15.6 8 1.86 575.00 2.5 2073600 6.354370
## 4 4 15.4 16 1.83 2537.45 2.7 5184000 7.838915
## 5 5 13.3 8 1.37 1803.60 3.1 4096000 7.497540
## 6 6 15.6 4 2.10 400.00 3.0 1049088 5.991465
var_numeric$X=NULL
# Matrice di correlazione
R<-cor(var_numeric)
R
## Inches Ram Weight Price Frequenza
## Inches 1.00000000 0.2379928 0.82763110 0.06819667 0.3078698
## Ram 0.23799280 1.0000000 0.38387409 0.74300714 0.3680005
## Weight 0.82763110 0.3838741 1.00000000 0.21036980 0.3204336
## Price 0.06819667 0.7430071 0.21036980 1.00000000 0.4302931
## Frequenza 0.30786980 0.3680005 0.32043359 0.43029310 1.0000000
## Pixel -0.08639917 0.3963585 -0.04403379 0.51548639 0.1352935
## LogPrice 0.04432871 0.6848033 0.15167383 0.92758068 0.5041461
## Pixel LogPrice
## Inches -0.08639917 0.04432871
## Ram 0.39635848 0.68480333
## Weight -0.04403379 0.15167383
## Price 0.51548639 0.92758068
## Frequenza 0.13529350 0.50414608
## Pixel 1.00000000 0.48490475
## LogPrice 0.48490475 1.00000000
# Test di correlazione. (Spearsman's o Kendall tau)
cor.test(var_numeric$Inches, var_numeric$Weight)
##
## Pearson's product-moment correlation
##
## data: var_numeric$Inches and var_numeric$Weight
## t = 53.187, df = 1301, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
## 0.8097181 0.8440031
## sample estimates:
## cor
## 0.8276311
#corrgram(var_numeric)
# Correlazione come grafo
library(qgraph)
## Registered S3 methods overwritten by 'huge':
## method from
## plot.sim BDgraph
## print.sim BDgraph
detcor=cor(as.matrix(var_numeric), method="pearson")
round(detcor, 2)
## Inches Ram Weight Price Frequenza Pixel LogPrice
## Inches 1.00 0.24 0.83 0.07 0.31 -0.09 0.04
## Ram 0.24 1.00 0.38 0.74 0.37 0.40 0.68
## Weight 0.83 0.38 1.00 0.21 0.32 -0.04 0.15
## Price 0.07 0.74 0.21 1.00 0.43 0.52 0.93
## Frequenza 0.31 0.37 0.32 0.43 1.00 0.14 0.50
## Pixel -0.09 0.40 -0.04 0.52 0.14 1.00 0.48
## LogPrice 0.04 0.68 0.15 0.93 0.50 0.48 1.00
# plot corr matrix: green positive red negative
qgraph(detcor, shape="circle", posCol="darkgreen", negCol="darkred")
Boxplot di confronto (pre-anova)
boxplot(data$Price~data$Company,
main="Boxplot Prezzo per compagnia",
col= rainbow(6),
horizontal = F)
boxplot(data$Price~data$SolidStateDisk,
main="Prezzo vs ssd",
col= rainbow(2),
horizontal = F)
ANOVA
A una via
lmA = lm(Price ~ SolidStateDisk, data=data)
summary(lmA)
##
## Call:
## lm(formula = Price ~ SolidStateDisk, data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -1214.8 -343.3 -96.8 261.1 4710.2
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 637.86 27.98 22.80 <2e-16 ***
## SolidStateDiskTrue 750.93 34.78 21.59 <2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 600 on 1301 degrees of freedom
## Multiple R-squared: 0.2638, Adjusted R-squared: 0.2632
## F-statistic: 466.2 on 1 and 1301 DF, p-value: < 2.2e-16
drop1(lmA, test = 'F')
## Single term deletions
##
## Model:
## Price ~ SolidStateDisk
## Df Sum of Sq RSS AIC F value Pr(>F)
## <none> 468355897 16672
## SolidStateDisk 1 167819064 636174961 17069 466.17 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
anova(lmA)
## Analysis of Variance Table
##
## Response: Price
## Df Sum Sq Mean Sq F value Pr(>F)
## SolidStateDisk 1 167819064 167819064 466.17 < 2.2e-16 ***
## Residuals 1301 468355897 359997
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
library(lsmeans)
## Loading required package: emmeans
## The 'lsmeans' package is now basically a front end for 'emmeans'.
## Users are encouraged to switch the rest of the way.
## See help('transition') for more information, including how to
## convert old 'lsmeans' objects and scripts to work with 'emmeans'.
ls_SolidStateDisk = lsmeans(lmA,pairwise ~ SolidStateDisk,adjust = 'tukey')
ls_SolidStateDisk$contrasts
## contrast estimate SE df t.ratio p.value
## False - True -751 34.8 1301 -21.591 <.0001
ls_SolidStateDisk$lsmeans
## SolidStateDisk lsmean SE df lower.CL upper.CL
## False 638 28.0 1301 583 693
## True 1389 20.7 1301 1348 1429
##
## Confidence level used: 0.95
plot(ls_SolidStateDisk$lsmeans, alpha = .05)
lmB = lm(Price ~ Company, data=data)
summary(lmB)
##
## Call:
## lm(formula = Price ~ Company, data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -2317.1 -452.8 -127.4 288.5 3812.6
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 626.78 63.43 9.881 < 2e-16 ***
## CompanyApple 937.42 154.14 6.082 1.57e-09 ***
## CompanyAsus 477.39 81.53 5.856 6.03e-09 ***
## CompanyChuwi -312.48 377.06 -0.829 0.407416
## CompanyDell 559.29 73.62 7.597 5.80e-14 ***
## CompanyFujitsu 102.22 377.06 0.271 0.786352
## CompanyGoogle 1050.89 377.06 2.787 0.005397 **
## CompanyHP 441.00 74.41 5.927 3.96e-09 ***
## CompanyHuawei 797.22 459.62 1.735 0.083065 .
## CompanyLenovo 459.61 73.62 6.243 5.81e-10 ***
## CompanyLG 1472.22 377.06 3.904 9.93e-05 ***
## CompanyMediacom -331.78 251.46 -1.319 0.187270
## CompanyMicrosoft 985.53 270.37 3.645 0.000278 ***
## CompanyMSI 1102.13 108.16 10.190 < 2e-16 ***
## CompanyRazer 2719.37 251.46 10.814 < 2e-16 ***
## CompanySamsung 786.67 223.77 3.515 0.000454 ***
## CompanyToshiba 641.04 112.51 5.698 1.50e-08 ***
## CompanyVero -409.35 328.08 -1.248 0.212365
## CompanyXiaomi 506.69 328.08 1.544 0.122740
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 643.8 on 1284 degrees of freedom
## Multiple R-squared: 0.1635, Adjusted R-squared: 0.1518
## F-statistic: 13.94 on 18 and 1284 DF, p-value: < 2.2e-16
drop1(lmB, test = 'F')
## Single term deletions
##
## Model:
## Price ~ Company
## Df Sum of Sq RSS AIC F value Pr(>F)
## <none> 532160971 16873
## Company 18 104013991 636174961 17069 13.943 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
anova(lmB)
## Analysis of Variance Table
##
## Response: Price
## Df Sum Sq Mean Sq F value Pr(>F)
## Company 18 104013991 5778555 13.943 < 2.2e-16 ***
## Residuals 1284 532160971 414456
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
ls_Company = lsmeans(lmB,pairwise ~ Company,adjust = 'tukey')
ls_Company$contrasts
## contrast estimate SE df t.ratio p.value
## Acer - Apple -937.4 154.1 1284 -6.082 <.0001
## Acer - Asus -477.4 81.5 1284 -5.856 <.0001
## Acer - Chuwi 312.5 377.1 1284 0.829 1.0000
## Acer - Dell -559.3 73.6 1284 -7.597 <.0001
## Acer - Fujitsu -102.2 377.1 1284 -0.271 1.0000
## Acer - Google -1050.9 377.1 1284 -2.787 0.3443
## Acer - HP -441.0 74.4 1284 -5.927 <.0001
## Acer - Huawei -797.2 459.6 1284 -1.735 0.9677
## Acer - Lenovo -459.6 73.6 1284 -6.243 <.0001
## Acer - LG -1472.2 377.1 1284 -3.904 0.0133
## Acer - Mediacom 331.8 251.5 1284 1.319 0.9986
## Acer - Microsoft -985.5 270.4 1284 -3.645 0.0335
## Acer - MSI -1102.1 108.2 1284 -10.190 <.0001
## Acer - Razer -2719.4 251.5 1284 -10.814 <.0001
## Acer - Samsung -786.7 223.8 1284 -3.515 0.0515
## Acer - Toshiba -641.0 112.5 1284 -5.698 <.0001
## Acer - Vero 409.4 328.1 1284 1.248 0.9993
## Acer - Xiaomi -506.7 328.1 1284 -1.544 0.9905
## Apple - Asus 460.0 149.5 1284 3.077 0.1805
## Apple - Chuwi 1249.9 397.4 1284 3.146 0.1513
## Apple - Dell 378.1 145.4 1284 2.601 0.4795
## Apple - Fujitsu 835.2 397.4 1284 2.102 0.8366
## Apple - Google -113.5 397.4 1284 -0.286 1.0000
## Apple - HP 496.4 145.8 1284 3.406 0.0725
## Apple - Huawei 140.2 476.4 1284 0.294 1.0000
## Apple - Lenovo 477.8 145.4 1284 3.287 0.1028
## Apple - LG -534.8 397.4 1284 -1.346 0.9982
## Apple - Mediacom 1269.2 281.0 1284 4.517 0.0011
## Apple - Microsoft -48.1 298.0 1284 -0.161 1.0000
## Apple - MSI -164.7 165.6 1284 -0.995 1.0000
## Apple - Razer -1781.9 281.0 1284 -6.342 <.0001
## Apple - Samsung 150.8 256.5 1284 0.588 1.0000
## Apple - Toshiba 296.4 168.4 1284 1.760 0.9629
## Apple - Vero 1346.8 351.2 1284 3.835 0.0172
## Apple - Xiaomi 430.7 351.2 1284 1.226 0.9994
## Asus - Chuwi 789.9 375.2 1284 2.105 0.8348
## Asus - Dell -81.9 63.4 1284 -1.292 0.9989
## Asus - Fujitsu 375.2 375.2 1284 1.000 1.0000
## Asus - Google -573.5 375.2 1284 -1.529 0.9915
## Asus - HP 36.4 64.3 1284 0.566 1.0000
## Asus - Huawei -319.8 458.1 1284 -0.698 1.0000
## Asus - Lenovo 17.8 63.4 1284 0.281 1.0000
## Asus - LG -994.8 375.2 1284 -2.651 0.4413
## Asus - Mediacom 809.2 248.7 1284 3.254 0.1128
## Asus - Microsoft -508.1 267.8 1284 -1.898 0.9264
## Asus - MSI -624.7 101.5 1284 -6.156 <.0001
## Asus - Razer -2242.0 248.7 1284 -9.016 <.0001
## Asus - Samsung -309.3 220.6 1284 -1.402 0.9969
## Asus - Toshiba -163.6 106.1 1284 -1.542 0.9906
## Asus - Vero 886.7 325.9 1284 2.721 0.3906
## Asus - Xiaomi -29.3 325.9 1284 -0.090 1.0000
## Chuwi - Dell -871.8 373.6 1284 -2.334 0.6854
## Chuwi - Fujitsu -414.7 525.6 1284 -0.789 1.0000
## Chuwi - Google -1363.4 525.6 1284 -2.594 0.4852
## Chuwi - HP -753.5 373.7 1284 -2.016 0.8798
## Chuwi - Huawei -1109.7 587.7 1284 -1.888 0.9295
## Chuwi - Lenovo -772.1 373.6 1284 -2.067 0.8552
## Chuwi - LG -1784.7 525.6 1284 -3.395 0.0748
## Chuwi - Mediacom 19.3 444.3 1284 0.043 1.0000
## Chuwi - Microsoft -1298.0 455.2 1284 -2.851 0.3023
## Chuwi - MSI -1414.6 381.9 1284 -3.704 0.0274
## Chuwi - Razer -3031.8 444.3 1284 -6.825 <.0001
## Chuwi - Samsung -1099.1 429.2 1284 -2.561 0.5105
## Chuwi - Toshiba -953.5 383.1 1284 -2.489 0.5668
## Chuwi - Vero 96.9 491.7 1284 0.197 1.0000
## Chuwi - Xiaomi -819.2 491.7 1284 -1.666 0.9785
## Dell - Fujitsu 457.1 373.6 1284 1.224 0.9995
## Dell - Google -491.6 373.6 1284 -1.316 0.9986
## Dell - HP 118.3 53.9 1284 2.194 0.7821
## Dell - Huawei -237.9 456.8 1284 -0.521 1.0000
## Dell - Lenovo 99.7 52.8 1284 1.887 0.9300
## Dell - LG -912.9 373.6 1284 -2.444 0.6018
## Dell - Mediacom 891.1 246.2 1284 3.620 0.0366
## Dell - Microsoft -426.2 265.5 1284 -1.606 0.9854
## Dell - MSI -542.8 95.2 1284 -5.700 <.0001
## Dell - Razer -2160.1 246.2 1284 -8.774 <.0001
## Dell - Samsung -227.4 217.8 1284 -1.044 0.9999
## Dell - Toshiba -81.7 100.1 1284 -0.816 1.0000
## Dell - Vero 968.6 324.1 1284 2.989 0.2229
## Dell - Xiaomi 52.6 324.1 1284 0.162 1.0000
## Fujitsu - Google -948.7 525.6 1284 -1.805 0.9530
## Fujitsu - HP -338.8 373.7 1284 -0.907 1.0000
## Fujitsu - Huawei -695.0 587.7 1284 -1.183 0.9997
## Fujitsu - Lenovo -357.4 373.6 1284 -0.957 1.0000
## Fujitsu - LG -1370.0 525.6 1284 -2.606 0.4755
## Fujitsu - Mediacom 434.0 444.3 1284 0.977 1.0000
## Fujitsu - Microsoft -883.3 455.2 1284 -1.940 0.9114
## Fujitsu - MSI -999.9 381.9 1284 -2.618 0.4663
## Fujitsu - Razer -2617.1 444.3 1284 -5.891 <.0001
## Fujitsu - Samsung -684.4 429.2 1284 -1.595 0.9864
## Fujitsu - Toshiba -538.8 383.1 1284 -1.406 0.9968
## Fujitsu - Vero 511.6 491.7 1284 1.040 0.9999
## Fujitsu - Xiaomi -404.5 491.7 1284 -0.823 1.0000
## Google - HP 609.9 373.7 1284 1.632 0.9826
## Google - Huawei 253.7 587.7 1284 0.432 1.0000
## Google - Lenovo 591.3 373.6 1284 1.583 0.9875
## Google - LG -421.3 525.6 1284 -0.802 1.0000
## Google - Mediacom 1382.7 444.3 1284 3.112 0.1649
## Google - Microsoft 65.4 455.2 1284 0.144 1.0000
## Google - MSI -51.2 381.9 1284 -0.134 1.0000
## Google - Razer -1668.5 444.3 1284 -3.756 0.0228
## Google - Samsung 264.2 429.2 1284 0.616 1.0000
## Google - Toshiba 409.9 383.1 1284 1.070 0.9999
## Google - Vero 1460.2 491.7 1284 2.970 0.2331
## Google - Xiaomi 544.2 491.7 1284 1.107 0.9999
## HP - Huawei -356.2 456.9 1284 -0.780 1.0000
## HP - Lenovo -18.6 53.9 1284 -0.345 1.0000
## HP - LG -1031.2 373.7 1284 -2.759 0.3633
## HP - Mediacom 772.8 246.4 1284 3.136 0.1551
## HP - Microsoft -544.5 265.7 1284 -2.050 0.8639
## HP - MSI -661.1 95.9 1284 -6.897 <.0001
## HP - Razer -2278.4 246.4 1284 -9.246 <.0001
## HP - Samsung -345.7 218.1 1284 -1.585 0.9873
## HP - Toshiba -200.0 100.7 1284 -1.986 0.8932
## HP - Vero 850.3 324.2 1284 2.623 0.4631
## HP - Xiaomi -65.7 324.2 1284 -0.203 1.0000
## Huawei - Lenovo 337.6 456.8 1284 0.739 1.0000
## Huawei - LG -675.0 587.7 1284 -1.149 0.9998
## Huawei - Mediacom 1129.0 516.2 1284 2.187 0.7862
## Huawei - Microsoft -188.3 525.6 1284 -0.358 1.0000
## Huawei - MSI -304.9 463.6 1284 -0.658 1.0000
## Huawei - Razer -1922.1 516.2 1284 -3.724 0.0256
## Huawei - Samsung 10.6 503.3 1284 0.021 1.0000
## Huawei - Toshiba 156.2 464.6 1284 0.336 1.0000
## Huawei - Vero 1206.6 557.5 1284 2.164 0.8005
## Huawei - Xiaomi 290.5 557.5 1284 0.521 1.0000
## Lenovo - LG -1012.6 373.6 1284 -2.711 0.3977
## Lenovo - Mediacom 791.4 246.2 1284 3.215 0.1258
## Lenovo - Microsoft -525.9 265.5 1284 -1.981 0.8951
## Lenovo - MSI -642.5 95.2 1284 -6.746 <.0001
## Lenovo - Razer -2259.8 246.2 1284 -9.179 <.0001
## Lenovo - Samsung -327.1 217.8 1284 -1.502 0.9931
## Lenovo - Toshiba -181.4 100.1 1284 -1.812 0.9513
## Lenovo - Vero 869.0 324.1 1284 2.682 0.4190
## Lenovo - Xiaomi -47.1 324.1 1284 -0.145 1.0000
## LG - Mediacom 1804.0 444.3 1284 4.061 0.0073
## LG - Microsoft 486.7 455.2 1284 1.069 0.9999
## LG - MSI 370.1 381.9 1284 0.969 1.0000
## LG - Razer -1247.1 444.3 1284 -2.807 0.3308
## LG - Samsung 685.6 429.2 1284 1.597 0.9862
## LG - Toshiba 831.2 383.1 1284 2.169 0.7972
## LG - Vero 1881.6 491.7 1284 3.827 0.0177
## LG - Xiaomi 965.5 491.7 1284 1.964 0.9023
## Mediacom - Microsoft -1317.3 358.2 1284 -3.678 0.0300
## Mediacom - MSI -1433.9 258.6 1284 -5.545 <.0001
## Mediacom - Razer -3051.1 344.1 1284 -8.867 <.0001
## Mediacom - Samsung -1118.4 324.4 1284 -3.447 0.0638
## Mediacom - Toshiba -972.8 260.5 1284 -3.735 0.0246
## Mediacom - Vero 77.6 403.5 1284 0.192 1.0000
## Mediacom - Xiaomi -838.5 403.5 1284 -2.078 0.8494
## Microsoft - MSI -116.6 277.0 1284 -0.421 1.0000
## Microsoft - Razer -1733.8 358.2 1284 -4.841 0.0002
## Microsoft - Samsung 198.9 339.3 1284 0.586 1.0000
## Microsoft - Toshiba 344.5 278.8 1284 1.236 0.9994
## Microsoft - Vero 1394.9 415.6 1284 3.357 0.0840
## Microsoft - Xiaomi 478.8 415.6 1284 1.152 0.9998
## MSI - Razer -1617.2 258.6 1284 -6.253 <.0001
## MSI - Samsung 315.5 231.8 1284 1.361 0.9979
## MSI - Toshiba 461.1 127.7 1284 3.611 0.0377
## MSI - Vero 1511.5 333.6 1284 4.531 0.0010
## MSI - Xiaomi 595.4 333.6 1284 1.785 0.9576
## Razer - Samsung 1932.7 324.4 1284 5.957 <.0001
## Razer - Toshiba 2078.3 260.5 1284 7.979 <.0001
## Razer - Vero 3128.7 403.5 1284 7.754 <.0001
## Razer - Xiaomi 2212.7 403.5 1284 5.484 <.0001
## Samsung - Toshiba 145.6 233.8 1284 0.623 1.0000
## Samsung - Vero 1196.0 386.9 1284 3.092 0.1738
## Samsung - Xiaomi 280.0 386.9 1284 0.724 1.0000
## Toshiba - Vero 1050.4 335.0 1284 3.135 0.1555
## Toshiba - Xiaomi 134.3 335.0 1284 0.401 1.0000
## Vero - Xiaomi -916.0 455.2 1284 -2.012 0.8815
##
## P value adjustment: tukey method for comparing a family of 19 estimates
ls_Company$lsmeans
## Company lsmean SE df lower.CL upper.CL
## Acer 627 63.4 1284 502.331 751
## Apple 1564 140.5 1284 1288.594 1840
## Asus 1104 51.2 1284 1003.692 1205
## Chuwi 314 371.7 1284 -414.885 1043
## Dell 1186 37.4 1284 1112.783 1259
## Fujitsu 729 371.7 1284 -0.182 1458
## Google 1678 371.7 1284 948.485 2407
## HP 1068 38.9 1284 991.475 1144
## Huawei 1424 455.2 1284 530.938 2317
## Lenovo 1086 37.4 1284 1013.099 1160
## LG 2099 371.7 1284 1369.818 2828
## Mediacom 295 243.3 1284 -182.362 772
## Microsoft 1612 262.8 1284 1096.699 2128
## MSI 1729 87.6 1284 1557.038 1901
## Razer 3346 243.3 1284 2868.781 3824
## Samsung 1413 214.6 1284 992.451 1834
## Toshiba 1268 92.9 1284 1085.517 1450
## Vero 217 321.9 1284 -414.065 849
## Xiaomi 1133 321.9 1284 501.972 1765
##
## Confidence level used: 0.95
plot(ls_Company$lsmeans, alpha = .05)
lmC = lm(Price ~ TypeName, data=data)
summary(lmC)
##
## Call:
## lm(formula = Price ~ TypeName, data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -1049.2 -381.7 -98.1 267.6 4367.6
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 1282.40 50.01 25.642 < 2e-16 ***
## TypeNameGaming 448.98 63.07 7.119 1.79e-12 ***
## TypeNameNetbook -646.17 120.86 -5.347 1.06e-07 ***
## TypeNameNotebook -500.32 54.01 -9.263 < 2e-16 ***
## TypeNameUltrabook 265.83 63.60 4.180 3.12e-05 ***
## TypeNameWorkstation 997.96 113.74 8.774 < 2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 550.1 on 1297 degrees of freedom
## Multiple R-squared: 0.383, Adjusted R-squared: 0.3806
## F-statistic: 161 on 5 and 1297 DF, p-value: < 2.2e-16
drop1(lmC, test = 'F')
## Single term deletions
##
## Model:
## Price ~ TypeName
## Df Sum of Sq RSS AIC F value Pr(>F)
## <none> 392518380 16450
## TypeName 5 243656581 636174961 17069 161.02 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
anova(lmC)
## Analysis of Variance Table
##
## Response: Price
## Df Sum Sq Mean Sq F value Pr(>F)
## TypeName 5 243656581 48731316 161.02 < 2.2e-16 ***
## Residuals 1297 392518380 302636
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
ls_TypeName = lsmeans(lmC,pairwise ~ TypeName,adjust = 'tukey')
ls_TypeName$contrasts
## contrast estimate SE df t.ratio p.value
## 2 in 1 Convertible - Gaming -449 63.1 1297 -7.119 <.0001
## 2 in 1 Convertible - Netbook 646 120.9 1297 5.347 <.0001
## 2 in 1 Convertible - Notebook 500 54.0 1297 9.263 <.0001
## 2 in 1 Convertible - Ultrabook -266 63.6 1297 -4.180 0.0004
## 2 in 1 Convertible - Workstation -998 113.7 1297 -8.774 <.0001
## Gaming - Netbook 1095 116.5 1297 9.397 <.0001
## Gaming - Notebook 949 43.5 1297 21.821 <.0001
## Gaming - Ultrabook 183 55.0 1297 3.333 0.0114
## Gaming - Workstation -549 109.1 1297 -5.030 <.0001
## Netbook - Notebook -146 111.9 1297 -1.303 0.7833
## Netbook - Ultrabook -912 116.8 1297 -7.806 <.0001
## Netbook - Workstation -1644 150.1 1297 -10.951 <.0001
## Notebook - Ultrabook -766 44.3 1297 -17.304 <.0001
## Notebook - Workstation -1498 104.2 1297 -14.383 <.0001
## Ultrabook - Workstation -732 109.5 1297 -6.689 <.0001
##
## P value adjustment: tukey method for comparing a family of 6 estimates
ls_TypeName$lsmeans
## TypeName lsmean SE df lower.CL upper.CL
## 2 in 1 Convertible 1282 50.0 1297 1184 1381
## Gaming 1731 38.4 1297 1656 1807
## Netbook 636 110.0 1297 420 852
## Notebook 782 20.4 1297 742 822
## Ultrabook 1548 39.3 1297 1471 1625
## Workstation 2280 102.2 1297 2080 2481
##
## Confidence level used: 0.95
plot(ls_TypeName$lsmeans, alpha = .05)
library(coefplot)
#library(forestmodel)
coefplot(lmC, intercept = FALSE)
par(mfrow = c(2,2))
plot(lmC)
#(not) normal distribution of residuals
par(mfrow=c(1,2))
boxplot(lmC$residuals)
qqnorm(lmC$residuals);qqline(lmC$residuals)
ad.test(lmC$residuals)
##
## Anderson-Darling normality test
##
## data: lmC$residuals
## A = 22.667, p-value < 2.2e-16
shapiro.test(lmC$residuals)
##
## Shapiro-Wilk normality test
##
## data: lmC$residuals
## W = 0.89641, p-value < 2.2e-16
#let's try again with the log correction
lmC_log = lm(log(Price) ~ TypeName, data=data)
summary(lmC_log)#R^2 increases
##
## Call:
## lm(formula = log(Price) ~ TypeName, data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -1.40971 -0.33589 0.00698 0.33215 1.96853
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 7.02648 0.04379 160.456 < 2e-16 ***
## TypeNameGaming 0.33865 0.05522 6.133 1.15e-09 ***
## TypeNameNetbook -0.91149 0.10583 -8.613 < 2e-16 ***
## TypeNameNotebook -0.49823 0.04729 -10.534 < 2e-16 ***
## TypeNameUltrabook 0.26648 0.05569 4.785 1.91e-06 ***
## TypeNameWorkstation 0.66479 0.09959 6.675 3.65e-11 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 0.4817 on 1297 degrees of freedom
## Multiple R-squared: 0.4061, Adjusted R-squared: 0.4038
## F-statistic: 177.4 on 5 and 1297 DF, p-value: < 2.2e-16
drop1(lmC_log, test = 'F')
## Single term deletions
##
## Model:
## log(Price) ~ TypeName
## Df Sum of Sq RSS AIC F value Pr(>F)
## <none> 300.95 -1897.5
## TypeName 5 205.76 506.71 -1228.7 177.36 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
anova(lmC_log)
## Analysis of Variance Table
##
## Response: log(Price)
## Df Sum Sq Mean Sq F value Pr(>F)
## TypeName 5 205.76 41.152 177.36 < 2.2e-16 ***
## Residuals 1297 300.95 0.232
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
ls_TypeName_log = lsmeans(lmC_log,pairwise ~ TypeName,adjust = 'tukey')
ls_TypeName_log$contrasts
## contrast estimate SE df t.ratio p.value
## 2 in 1 Convertible - Gaming -0.3387 0.0552 1297 -6.133 <.0001
## 2 in 1 Convertible - Netbook 0.9115 0.1058 1297 8.613 <.0001
## 2 in 1 Convertible - Notebook 0.4982 0.0473 1297 10.534 <.0001
## 2 in 1 Convertible - Ultrabook -0.2665 0.0557 1297 -4.785 <.0001
## 2 in 1 Convertible - Workstation -0.6648 0.0996 1297 -6.675 <.0001
## Gaming - Netbook 1.2501 0.1020 1297 12.251 <.0001
## Gaming - Notebook 0.8369 0.0381 1297 21.970 <.0001
## Gaming - Ultrabook 0.0722 0.0481 1297 1.500 0.6644
## Gaming - Workstation -0.3261 0.0956 1297 -3.413 0.0087
## Netbook - Notebook -0.4133 0.0980 1297 -4.218 0.0004
## Netbook - Ultrabook -1.1780 0.1023 1297 -11.515 <.0001
## Netbook - Workstation -1.5763 0.1315 1297 -11.990 <.0001
## Notebook - Ultrabook -0.7647 0.0388 1297 -19.725 <.0001
## Notebook - Workstation -1.1630 0.0912 1297 -12.750 <.0001
## Ultrabook - Workstation -0.3983 0.0958 1297 -4.156 0.0005
##
## Results are given on the log (not the response) scale.
## P value adjustment: tukey method for comparing a family of 6 estimates
ls_TypeName_log$lsmeans
## TypeName lsmean SE df lower.CL upper.CL
## 2 in 1 Convertible 7.03 0.0438 1297 6.94 7.11
## Gaming 7.37 0.0336 1297 7.30 7.43
## Netbook 6.11 0.0963 1297 5.93 6.30
## Notebook 6.53 0.0179 1297 6.49 6.56
## Ultrabook 7.29 0.0344 1297 7.23 7.36
## Workstation 7.69 0.0894 1297 7.52 7.87
##
## Results are given on the log (not the response) scale.
## Confidence level used: 0.95
plot(ls_TypeName_log$lsmeans, alpha = .05)
coefplot(lmC_log, intercept = FALSE)
par(mfrow = c(2,2))
plot(lmC_log)
#(not) normal distribution of residuals
par(mfrow=c(1,2))
boxplot(lmC_log$residuals)
qqnorm(lmC_log$residuals);qqline(lmC_log$residuals)
ad.test(lmC_log$residuals) #normal now!
##
## Anderson-Darling normality test
##
## data: lmC_log$residuals
## A = 0.51757, p-value = 0.1886
shapiro.test(lmC_log$residuals) #borderline now!
##
## Shapiro-Wilk normality test
##
## data: lmC_log$residuals
## W = 0.99764, p-value = 0.05462
A due vie
# Con interazione
lmC = lm(Price ~ Company*TypeName , data=data)
drop1(lmC, test="F")
## Single term deletions
##
## Model:
## Price ~ Company * TypeName
## Df Sum of Sq RSS AIC F value Pr(>F)
## <none> 320739568 16273
## Company:TypeName 25 29159364 349898932 16336 4.5602 1.181e-12 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
summary(lmC)
##
## Call:
## lm(formula = Price ~ Company * TypeName, data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -1520.0 -312.7 -73.6 223.7 4109.9
##
## Coefficients: (65 not defined because of singularities)
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 698.75 178.81 3.908 9.81e-05
## CompanyApple 673.70 275.90 2.442 0.014752
## CompanyAsus 277.63 227.26 1.222 0.222064
## CompanyChuwi -225.84 297.55 -0.759 0.447992
## CompanyDell 432.92 201.24 2.151 0.031646
## CompanyFujitsu 188.86 297.55 0.635 0.525730
## CompanyGoogle 787.17 386.27 2.038 0.041770
## CompanyHP 808.06 213.15 3.791 0.000157
## CompanyHuawei 533.50 437.98 1.218 0.223422
## CompanyLenovo 791.90 193.13 4.100 4.39e-05
## CompanyLG 1208.50 386.27 3.129 0.001796
## CompanyMediacom -399.75 536.42 -0.745 0.456277
## CompanyMicrosoft 721.81 326.45 2.211 0.027212
## CompanyMSI 260.78 191.59 1.361 0.173719
## CompanyRazer 523.50 437.98 1.195 0.232216
## CompanySamsung 530.25 399.82 1.326 0.185012
## CompanyToshiba 853.75 291.99 2.924 0.003519
## CompanyVero -322.71 259.27 -1.245 0.213478
## CompanyXiaomi 76.95 437.98 0.176 0.860565
## TypeNameGaming 769.37 252.87 3.043 0.002394
## TypeNameNetbook -392.75 288.32 -1.362 0.173372
## TypeNameNotebook -158.61 187.75 -0.845 0.398388
## TypeNameUltrabook 191.75 309.70 0.619 0.535936
## TypeNameWorkstation 890.35 263.20 3.383 0.000739
## CompanyApple:TypeNameGaming NA NA NA NA
## CompanyAsus:TypeNameGaming -25.75 297.25 -0.087 0.930970
## CompanyChuwi:TypeNameGaming NA NA NA NA
## CompanyDell:TypeNameGaming 17.35 280.83 0.062 0.950749
## CompanyFujitsu:TypeNameGaming NA NA NA NA
## CompanyGoogle:TypeNameGaming NA NA NA NA
## CompanyHP:TypeNameGaming -852.10 314.20 -2.712 0.006779
## CompanyHuawei:TypeNameGaming NA NA NA NA
## CompanyLenovo:TypeNameGaming -931.05 277.97 -3.350 0.000834
## CompanyLG:TypeNameGaming NA NA NA NA
## CompanyMediacom:TypeNameGaming NA NA NA NA
## CompanyMicrosoft:TypeNameGaming NA NA NA NA
## CompanyMSI:TypeNameGaming NA NA NA NA
## CompanyRazer:TypeNameGaming 2127.37 524.36 4.057 5.28e-05
## CompanySamsung:TypeNameGaming NA NA NA NA
## CompanyToshiba:TypeNameGaming NA NA NA NA
## CompanyVero:TypeNameGaming NA NA NA NA
## CompanyXiaomi:TypeNameGaming NA NA NA NA
## CompanyApple:TypeNameNetbook NA NA NA NA
## CompanyAsus:TypeNameNetbook -317.43 408.34 -0.777 0.437087
## CompanyChuwi:TypeNameNetbook NA NA NA NA
## CompanyDell:TypeNameNetbook -219.42 468.55 -0.468 0.639656
## CompanyFujitsu:TypeNameNetbook NA NA NA NA
## CompanyGoogle:TypeNameNetbook NA NA NA NA
## CompanyHP:TypeNameNetbook -107.39 353.56 -0.304 0.761375
## CompanyHuawei:TypeNameNetbook NA NA NA NA
## CompanyLenovo:TypeNameNetbook -362.15 390.38 -0.928 0.353757
## CompanyLG:TypeNameNetbook NA NA NA NA
## CompanyMediacom:TypeNameNetbook NA NA NA NA
## CompanyMicrosoft:TypeNameNetbook NA NA NA NA
## CompanyMSI:TypeNameNetbook NA NA NA NA
## CompanyRazer:TypeNameNetbook NA NA NA NA
## CompanySamsung:TypeNameNetbook -567.25 683.22 -0.830 0.406549
## CompanyToshiba:TypeNameNetbook NA NA NA NA
## CompanyVero:TypeNameNetbook NA NA NA NA
## CompanyXiaomi:TypeNameNetbook NA NA NA NA
## CompanyApple:TypeNameNotebook NA NA NA NA
## CompanyAsus:TypeNameNotebook -190.67 242.37 -0.787 0.431608
## CompanyChuwi:TypeNameNotebook NA NA NA NA
## CompanyDell:TypeNameNotebook -102.10 212.90 -0.480 0.631634
## CompanyFujitsu:TypeNameNotebook NA NA NA NA
## CompanyGoogle:TypeNameNotebook NA NA NA NA
## CompanyHP:TypeNameNotebook -531.57 223.84 -2.375 0.017707
## CompanyHuawei:TypeNameNotebook NA NA NA NA
## CompanyLenovo:TypeNameNotebook -542.89 204.98 -2.648 0.008186
## CompanyLG:TypeNameNotebook NA NA NA NA
## CompanyMediacom:TypeNameNotebook 153.94 577.63 0.267 0.789888
## CompanyMicrosoft:TypeNameNotebook NA NA NA NA
## CompanyMSI:TypeNameNotebook NA NA NA NA
## CompanyRazer:TypeNameNotebook NA NA NA NA
## CompanySamsung:TypeNameNotebook 628.61 647.23 0.971 0.331622
## CompanyToshiba:TypeNameNotebook -284.89 309.26 -0.921 0.357124
## CompanyVero:TypeNameNotebook NA NA NA NA
## CompanyXiaomi:TypeNameNotebook 682.39 568.33 1.201 0.230098
## CompanyApple:TypeNameUltrabook NA NA NA NA
## CompanyAsus:TypeNameUltrabook 122.11 358.30 0.341 0.733317
## CompanyChuwi:TypeNameUltrabook NA NA NA NA
## CompanyDell:TypeNameUltrabook 154.50 331.15 0.467 0.640906
## CompanyFujitsu:TypeNameUltrabook NA NA NA NA
## CompanyGoogle:TypeNameUltrabook NA NA NA NA
## CompanyHP:TypeNameUltrabook -161.42 341.29 -0.473 0.636324
## CompanyHuawei:TypeNameUltrabook NA NA NA NA
## CompanyLenovo:TypeNameUltrabook 112.52 330.90 0.340 0.733874
## CompanyLG:TypeNameUltrabook NA NA NA NA
## CompanyMediacom:TypeNameUltrabook NA NA NA NA
## CompanyMicrosoft:TypeNameUltrabook NA NA NA NA
## CompanyMSI:TypeNameUltrabook NA NA NA NA
## CompanyRazer:TypeNameUltrabook NA NA NA NA
## CompanySamsung:TypeNameUltrabook 238.25 524.36 0.454 0.649646
## CompanyToshiba:TypeNameUltrabook NA NA NA NA
## CompanyVero:TypeNameUltrabook NA NA NA NA
## CompanyXiaomi:TypeNameUltrabook NA NA NA NA
## CompanyApple:TypeNameWorkstation NA NA NA NA
## CompanyAsus:TypeNameWorkstation NA NA NA NA
## CompanyChuwi:TypeNameWorkstation NA NA NA NA
## CompanyDell:TypeNameWorkstation 197.15 317.88 0.620 0.535249
## CompanyFujitsu:TypeNameWorkstation NA NA NA NA
## CompanyGoogle:TypeNameWorkstation NA NA NA NA
## CompanyHP:TypeNameWorkstation -97.48 317.81 -0.307 0.759103
## CompanyHuawei:TypeNameWorkstation NA NA NA NA
## CompanyLenovo:TypeNameWorkstation NA NA NA NA
## CompanyLG:TypeNameWorkstation NA NA NA NA
## CompanyMediacom:TypeNameWorkstation NA NA NA NA
## CompanyMicrosoft:TypeNameWorkstation NA NA NA NA
## CompanyMSI:TypeNameWorkstation NA NA NA NA
## CompanyRazer:TypeNameWorkstation NA NA NA NA
## CompanySamsung:TypeNameWorkstation NA NA NA NA
## CompanyToshiba:TypeNameWorkstation NA NA NA NA
## CompanyVero:TypeNameWorkstation NA NA NA NA
## CompanyXiaomi:TypeNameWorkstation NA NA NA NA
##
## (Intercept) ***
## CompanyApple *
## CompanyAsus
## CompanyChuwi
## CompanyDell *
## CompanyFujitsu
## CompanyGoogle *
## CompanyHP ***
## CompanyHuawei
## CompanyLenovo ***
## CompanyLG **
## CompanyMediacom
## CompanyMicrosoft *
## CompanyMSI
## CompanyRazer
## CompanySamsung
## CompanyToshiba **
## CompanyVero
## CompanyXiaomi
## TypeNameGaming **
## TypeNameNetbook
## TypeNameNotebook
## TypeNameUltrabook
## TypeNameWorkstation ***
## CompanyApple:TypeNameGaming
## CompanyAsus:TypeNameGaming
## CompanyChuwi:TypeNameGaming
## CompanyDell:TypeNameGaming
## CompanyFujitsu:TypeNameGaming
## CompanyGoogle:TypeNameGaming
## CompanyHP:TypeNameGaming **
## CompanyHuawei:TypeNameGaming
## CompanyLenovo:TypeNameGaming ***
## CompanyLG:TypeNameGaming
## CompanyMediacom:TypeNameGaming
## CompanyMicrosoft:TypeNameGaming
## CompanyMSI:TypeNameGaming
## CompanyRazer:TypeNameGaming ***
## CompanySamsung:TypeNameGaming
## CompanyToshiba:TypeNameGaming
## CompanyVero:TypeNameGaming
## CompanyXiaomi:TypeNameGaming
## CompanyApple:TypeNameNetbook
## CompanyAsus:TypeNameNetbook
## CompanyChuwi:TypeNameNetbook
## CompanyDell:TypeNameNetbook
## CompanyFujitsu:TypeNameNetbook
## CompanyGoogle:TypeNameNetbook
## CompanyHP:TypeNameNetbook
## CompanyHuawei:TypeNameNetbook
## CompanyLenovo:TypeNameNetbook
## CompanyLG:TypeNameNetbook
## CompanyMediacom:TypeNameNetbook
## CompanyMicrosoft:TypeNameNetbook
## CompanyMSI:TypeNameNetbook
## CompanyRazer:TypeNameNetbook
## CompanySamsung:TypeNameNetbook
## CompanyToshiba:TypeNameNetbook
## CompanyVero:TypeNameNetbook
## CompanyXiaomi:TypeNameNetbook
## CompanyApple:TypeNameNotebook
## CompanyAsus:TypeNameNotebook
## CompanyChuwi:TypeNameNotebook
## CompanyDell:TypeNameNotebook
## CompanyFujitsu:TypeNameNotebook
## CompanyGoogle:TypeNameNotebook
## CompanyHP:TypeNameNotebook *
## CompanyHuawei:TypeNameNotebook
## CompanyLenovo:TypeNameNotebook **
## CompanyLG:TypeNameNotebook
## CompanyMediacom:TypeNameNotebook
## CompanyMicrosoft:TypeNameNotebook
## CompanyMSI:TypeNameNotebook
## CompanyRazer:TypeNameNotebook
## CompanySamsung:TypeNameNotebook
## CompanyToshiba:TypeNameNotebook
## CompanyVero:TypeNameNotebook
## CompanyXiaomi:TypeNameNotebook
## CompanyApple:TypeNameUltrabook
## CompanyAsus:TypeNameUltrabook
## CompanyChuwi:TypeNameUltrabook
## CompanyDell:TypeNameUltrabook
## CompanyFujitsu:TypeNameUltrabook
## CompanyGoogle:TypeNameUltrabook
## CompanyHP:TypeNameUltrabook
## CompanyHuawei:TypeNameUltrabook
## CompanyLenovo:TypeNameUltrabook
## CompanyLG:TypeNameUltrabook
## CompanyMediacom:TypeNameUltrabook
## CompanyMicrosoft:TypeNameUltrabook
## CompanyMSI:TypeNameUltrabook
## CompanyRazer:TypeNameUltrabook
## CompanySamsung:TypeNameUltrabook
## CompanyToshiba:TypeNameUltrabook
## CompanyVero:TypeNameUltrabook
## CompanyXiaomi:TypeNameUltrabook
## CompanyApple:TypeNameWorkstation
## CompanyAsus:TypeNameWorkstation
## CompanyChuwi:TypeNameWorkstation
## CompanyDell:TypeNameWorkstation
## CompanyFujitsu:TypeNameWorkstation
## CompanyGoogle:TypeNameWorkstation
## CompanyHP:TypeNameWorkstation
## CompanyHuawei:TypeNameWorkstation
## CompanyLenovo:TypeNameWorkstation
## CompanyLG:TypeNameWorkstation
## CompanyMediacom:TypeNameWorkstation
## CompanyMicrosoft:TypeNameWorkstation
## CompanyMSI:TypeNameWorkstation
## CompanyRazer:TypeNameWorkstation
## CompanySamsung:TypeNameWorkstation
## CompanyToshiba:TypeNameWorkstation
## CompanyVero:TypeNameWorkstation
## CompanyXiaomi:TypeNameWorkstation
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 505.7 on 1254 degrees of freedom
## Multiple R-squared: 0.4958, Adjusted R-squared: 0.4765
## F-statistic: 25.69 on 48 and 1254 DF, p-value: < 2.2e-16
lmC = lm(Price ~ Company+TypeName , data=data)
# type I effects A, B/A C/A,B
anova(lmC)
## Analysis of Variance Table
##
## Response: Price
## Df Sum Sq Mean Sq F value Pr(>F)
## Company 18 104013991 5778555 21.123 < 2.2e-16 ***
## TypeName 5 182262038 36452408 133.246 < 2.2e-16 ***
## Residuals 1279 349898932 273572
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
# type III effects A/B,C , B/A,C C/A,B
drop1(lmC, test="F")
## Single term deletions
##
## Model:
## Price ~ Company + TypeName
## Df Sum of Sq RSS AIC F value Pr(>F)
## <none> 349898932 16336
## Company 18 42619448 392518380 16450 8.6549 < 2.2e-16 ***
## TypeName 5 182262038 532160971 16873 133.2460 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
summary(lmC)
##
## Call:
## lm(formula = Price ~ Company + TypeName, data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -2147.6 -343.2 -81.9 243.1 4081.9
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 991.52 69.88 14.189 < 2e-16 ***
## CompanyApple 383.70 132.62 2.893 0.00388 **
## CompanyAsus 168.81 67.79 2.490 0.01290 *
## CompanyChuwi -180.68 306.47 -0.590 0.55559
## CompanyDell 350.73 60.52 5.796 8.56e-09 ***
## CompanyFujitsu 234.02 306.47 0.764 0.44525
## CompanyGoogle 497.17 309.44 1.607 0.10837
## CompanyHP 337.48 60.85 5.546 3.55e-08 ***
## CompanyHuawei 243.50 375.96 0.648 0.51731
## CompanyLenovo 322.12 60.24 5.348 1.05e-07 ***
## CompanyLG 918.50 309.44 2.968 0.00305 **
## CompanyMediacom -270.91 204.43 -1.325 0.18534
## CompanyMicrosoft 431.81 223.95 1.928 0.05406 .
## CompanyMSI 311.10 98.62 3.155 0.00165 **
## CompanyRazer 1996.14 207.24 9.632 < 2e-16 ***
## CompanySamsung 438.88 183.82 2.388 0.01710 *
## CompanyToshiba 601.45 92.12 6.529 9.52e-11 ***
## CompanyVero -277.55 266.70 -1.041 0.29821
## CompanyXiaomi 295.72 267.40 1.106 0.26896
## TypeNameGaming 426.29 65.51 6.507 1.10e-10 ***
## TypeNameNetbook -600.94 115.75 -5.192 2.42e-07 ***
## TypeNameNotebook -496.54 51.98 -9.552 < 2e-16 ***
## TypeNameUltrabook 188.98 63.81 2.962 0.00312 **
## TypeNameWorkstation 948.46 109.22 8.684 < 2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 523 on 1279 degrees of freedom
## Multiple R-squared: 0.45, Adjusted R-squared: 0.4401
## F-statistic: 45.5 on 23 and 1279 DF, p-value: < 2.2e-16
# contrasti
library(lsmeans)
ls=lsmeans(lmC, #FIXME: @Andrea, c'era lmB ma credo tu volessi scrivere lmC, in case check it
pairwise ~ TypeName ,
adjust="tukey")
ls$lsmeans
## TypeName lsmean SE df lower.CL upper.CL
## 2 in 1 Convertible 1350 68.9 1279 1214 1485
## Gaming 1776 64.4 1279 1649 1902
## Netbook 749 115.9 1279 521 976
## Notebook 853 52.0 1279 751 955
## Ultrabook 1538 55.5 1279 1430 1647
## Workstation 2298 110.1 1279 2082 2514
##
## Results are averaged over the levels of: Company
## Confidence level used: 0.95
# plot lsmeans and 95% confid int
plot(ls$lsmeans, alpha = .05)
# contrasts between predicted lsmeans
ls$contrasts
## contrast estimate SE df t.ratio p.value
## 2 in 1 Convertible - Gaming -426 65.5 1279 -6.507 <.0001
## 2 in 1 Convertible - Netbook 601 115.7 1279 5.192 <.0001
## 2 in 1 Convertible - Notebook 497 52.0 1279 9.552 <.0001
## 2 in 1 Convertible - Ultrabook -189 63.8 1279 -2.962 0.0367
## 2 in 1 Convertible - Workstation -948 109.2 1279 -8.684 <.0001
## Gaming - Netbook 1027 114.5 1279 8.972 <.0001
## Gaming - Notebook 923 49.4 1279 18.671 <.0001
## Gaming - Ultrabook 237 61.1 1279 3.882 0.0015
## Gaming - Workstation -522 108.3 1279 -4.820 <.0001
## Netbook - Notebook -104 107.0 1279 -0.975 0.9258
## Netbook - Ultrabook -790 113.3 1279 -6.969 <.0001
## Netbook - Workstation -1549 143.8 1279 -10.774 <.0001
## Notebook - Ultrabook -686 46.5 1279 -14.754 <.0001
## Notebook - Workstation -1445 99.8 1279 -14.475 <.0001
## Ultrabook - Workstation -759 106.4 1279 -7.138 <.0001
##
## Results are averaged over the levels of: Company
## P value adjustment: tukey method for comparing a family of 6 estimates
# if at least one contrast is significant, the variable
# is significant in the anova table # drop1 effects
# contrast among predicted lsmeans and overall lsmean
c= contrast(ls, method = "eff")
c
## $lsmeans
## contrast estimate SE df t.ratio p.value
## 2 in 1 Convertible effect -77.7 47.9 1279 -1.623 0.1048
## Gaming effect 348.6 46.0 1279 7.583 <.0001
## Netbook effect -678.6 90.2 1279 -7.521 <.0001
## Notebook effect -574.2 31.8 1279 -18.032 <.0001
## Ultrabook effect 111.3 43.8 1279 2.542 0.0134
## Workstation effect 870.7 84.6 1279 10.287 <.0001
##
## Results are averaged over the levels of: Company
## P value adjustment: fdr method for 6 tests
##
## $contrasts
## contrast estimate SE df t.ratio
## 2 in 1 Convertible - Gaming effect -150.6 71.6 1279 -2.103
## 2 in 1 Convertible - Netbook effect 876.6 121.9 1279 7.192
## 2 in 1 Convertible - Notebook effect 772.2 51.2 1279 15.077
## 2 in 1 Convertible - Ultrabook effect 86.7 57.9 1279 1.498
## 2 in 1 Convertible - Workstation effect -672.8 74.0 1279 -9.093
## Gaming - Netbook effect 1302.9 123.6 1279 10.544
## Gaming - Notebook effect 1198.5 55.4 1279 21.649
## Gaming - Ultrabook effect 513.0 60.9 1279 8.416
## Gaming - Workstation effect -246.5 77.4 1279 -3.186
## Netbook - Notebook effect 171.2 107.0 1279 1.600
## Netbook - Ultrabook effect -514.3 110.5 1279 -4.655
## Netbook - Workstation effect -1273.7 119.6 1279 -10.649
## Notebook - Ultrabook effect -409.9 55.3 1279 -7.416
## Notebook - Workstation effect -1169.3 71.6 1279 -16.325
## Ultrabook - Workstation effect -483.8 84.4 1279 -5.730
## p.value
## 0.0411
## <.0001
## <.0001
## 0.1345
## <.0001
## <.0001
## <.0001
## <.0001
## 0.0018
## 0.1177
## <.0001
## <.0001
## <.0001
## <.0001
## <.0001
##
## Results are averaged over the levels of: Company
## P value adjustment: fdr method for 15 tests
library(coefplot)
coefplot(lmC, intercept=FALSE) #FIXME: @Andrea, same goes here
ANOVA k way
lmK = lm(Price ~ Company+TypeName+SolidStateDisk , data=data)
summary(lmK)
##
## Call:
## lm(formula = Price ~ Company + TypeName + SolidStateDisk, data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -2113.2 -301.6 -49.8 210.4 3862.4
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 689.90 67.44 10.230 < 2e-16 ***
## CompanyApple 514.90 122.54 4.202 2.83e-05 ***
## CompanyAsus 130.26 62.53 2.083 0.03744 *
## CompanyChuwi -16.66 282.67 -0.059 0.95300
## CompanyDell 280.98 55.97 5.020 5.88e-07 ***
## CompanyFujitsu 84.49 282.64 0.299 0.76505
## CompanyGoogle 404.40 285.26 1.418 0.15653
## CompanyHP 272.28 56.25 4.840 1.45e-06 ***
## CompanyHuawei 150.73 346.56 0.435 0.66368
## CompanyLenovo 235.35 55.81 4.217 2.65e-05 ***
## CompanyLG 825.73 285.26 2.895 0.00386 **
## CompanyMediacom -356.00 188.50 -1.889 0.05918 .
## CompanyMicrosoft 339.04 206.50 1.642 0.10087
## CompanyMSI 178.78 91.32 1.958 0.05047 .
## CompanyRazer 1868.90 191.19 9.775 < 2e-16 ***
## CompanySamsung 387.48 169.45 2.287 0.02238 *
## CompanyToshiba 436.72 85.60 5.102 3.87e-07 ***
## CompanyVero -113.54 246.04 -0.461 0.64456
## CompanyXiaomi 96.18 246.80 0.390 0.69680
## TypeNameGaming 398.61 60.40 6.599 6.05e-11 ***
## TypeNameNetbook -473.92 107.01 -4.429 1.03e-05 ***
## TypeNameNotebook -358.93 48.77 -7.360 3.28e-13 ***
## TypeNameUltrabook 113.04 59.02 1.915 0.05570 .
## TypeNameWorkstation 946.96 100.66 9.407 < 2e-16 ***
## SolidStateDiskTrue 470.33 31.17 15.089 < 2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 482.1 on 1278 degrees of freedom
## Multiple R-squared: 0.5332, Adjusted R-squared: 0.5244
## F-statistic: 60.82 on 24 and 1278 DF, p-value: < 2.2e-16
drop1(lmK, test="F") # type III SS
## Single term deletions
##
## Model:
## Price ~ Company + TypeName + SolidStateDisk
## Df Sum of Sq RSS AIC F value Pr(>F)
## <none> 296988657 16125
## Company 18 33990309 330978966 16230 8.1259 < 2.2e-16 ***
## TypeName 5 109128253 406116910 16523 93.9200 < 2.2e-16 ***
## SolidStateDisk 1 52910275 349898932 16336 227.6832 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
coefplot(lmK, intercept=FALSE)
Regressione lineare
lmA<-lm(Price ~ Frequenza , data=data)
summary(lmA)
##
## Call:
## lm(formula = Price ~ Frequenza, data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -1467.6 -453.8 -119.6 327.6 4618.2
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) -241.84 81.32 -2.974 0.003 **
## Frequenza 594.02 34.55 17.194 <2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 631.2 on 1301 degrees of freedom
## Multiple R-squared: 0.1852, Adjusted R-squared: 0.1845
## F-statistic: 295.6 on 1 and 1301 DF, p-value: < 2.2e-16
plot(data$Frequenza,data$Price)
abline(lmA,col="red")
lmA<-lm(Price ~ Frequenza+Pixel+Ram , data=data)
summary(lmA)
##
## Call:
## lm(formula = Price ~ Frequenza + Pixel + Ram, data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -1785.72 -257.23 -66.06 191.11 2791.53
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) -4.076e+02 5.547e+01 -7.349 3.52e-13 ***
## Frequenza 2.549e+02 2.474e+01 10.306 < 2e-16 ***
## Pixel 1.329e-04 9.117e-06 14.575 < 2e-16 ***
## Ram 7.839e+01 2.658e+00 29.488 < 2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 420.2 on 1299 degrees of freedom
## Multiple R-squared: 0.6395, Adjusted R-squared: 0.6386
## F-statistic: 768 on 3 and 1299 DF, p-value: < 2.2e-16
coefplot(lmA, intercept=FALSE)
ANCOVA
lmK = lm(Price ~ Company+TypeName+SolidStateDisk+ Frequenza+Pixel+Ram , data=data)
summary(lmK)
##
## Call:
## lm(formula = Price ~ Company + TypeName + SolidStateDisk + Frequenza +
## Pixel + Ram, data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -1838.5 -211.8 -28.2 169.3 1894.4
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) -1.491e+02 6.691e+01 -2.229 0.02602 *
## CompanyApple 2.826e+02 9.043e+01 3.125 0.00182 **
## CompanyAsus 5.438e+01 4.587e+01 1.185 0.23609
## CompanyChuwi -7.683e+01 2.082e+02 -0.369 0.71213
## CompanyDell 1.124e+02 4.132e+01 2.720 0.00662 **
## CompanyFujitsu 5.168e+01 2.071e+02 0.250 0.80294
## CompanyGoogle 3.062e+02 2.105e+02 1.455 0.14602
## CompanyHP 2.045e+02 4.134e+01 4.947 8.54e-07 ***
## CompanyHuawei 5.510e+01 2.539e+02 0.217 0.82822
## CompanyLenovo 1.260e+02 4.108e+01 3.066 0.00221 **
## CompanyLG 6.759e+02 2.090e+02 3.235 0.00125 **
## CompanyMediacom -1.108e+02 1.392e+02 -0.796 0.42603
## CompanyMicrosoft 2.369e+02 1.515e+02 1.564 0.11807
## CompanyMSI 2.046e+02 6.686e+01 3.061 0.00225 **
## CompanyRazer 1.085e+03 1.428e+02 7.594 5.95e-14 ***
## CompanySamsung 9.436e+01 1.246e+02 0.757 0.44896
## CompanyToshiba 2.871e+02 6.306e+01 4.553 5.79e-06 ***
## CompanyVero 1.440e+01 1.811e+02 0.080 0.93663
## CompanyXiaomi -1.743e+01 1.808e+02 -0.096 0.92322
## TypeNameGaming -2.977e+01 4.812e+01 -0.619 0.53621
## TypeNameNetbook -1.142e+02 7.947e+01 -1.437 0.15105
## TypeNameNotebook -2.440e+02 3.642e+01 -6.700 3.11e-11 ***
## TypeNameUltrabook 9.405e+01 4.338e+01 2.168 0.03034 *
## TypeNameWorkstation 7.172e+02 7.500e+01 9.562 < 2e-16 ***
## SolidStateDiskTrue 1.997e+02 2.432e+01 8.212 5.28e-16 ***
## Frequenza 1.701e+02 2.320e+01 7.335 3.94e-13 ***
## Pixel 8.315e-05 8.292e-06 10.028 < 2e-16 ***
## Ram 6.541e+01 2.578e+00 25.368 < 2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 352.9 on 1275 degrees of freedom
## Multiple R-squared: 0.7504, Adjusted R-squared: 0.7452
## F-statistic: 142 on 27 and 1275 DF, p-value: < 2.2e-16
drop1(lmK, .~., test="F")
## Single term deletions
##
## Model:
## Price ~ Company + TypeName + SolidStateDisk + Frequenza + Pixel +
## Ram
## Df Sum of Sq RSS AIC F value Pr(>F)
## <none> 158760389 15315
## Company 18 13404444 172164833 15384 5.9806 4.092e-14 ***
## TypeName 5 35077529 193837917 15565 56.3413 < 2.2e-16 ***
## SolidStateDisk 1 8397143 167157532 15380 67.4372 5.281e-16 ***
## Frequenza 1 6698755 165459144 15367 53.7975 3.940e-13 ***
## Pixel 1 12521049 171281438 15412 100.5562 < 2.2e-16 ***
## Ram 1 80130237 238890626 15845 643.5236 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
ls=lsmeans(lmK,
pairwise ~ Company ,
adjust="tukey")
c= contrast(ls, method = "eff")
c
## $lsmeans
## contrast estimate SE df t.ratio p.value
## Acer effect -188.7 47.7 1275 -3.956 0.0008
## Apple effect 93.9 82.6 1275 1.136 0.4423
## Asus effect -134.3 43.1 1275 -3.120 0.0117
## Chuwi effect -265.5 197.1 1275 -1.347 0.3759
## Dell effect -76.3 38.3 1275 -1.992 0.1477
## Fujitsu effect -137.0 196.3 1275 -0.698 0.6586
## Google effect 117.5 197.7 1275 0.594 0.6847
## HP effect 15.8 39.5 1275 0.400 0.7706
## Huawei effect -133.6 239.3 1275 -0.558 0.6847
## Lenovo effect -62.7 39.1 1275 -1.605 0.2582
## LG effect 487.2 196.6 1275 2.478 0.0633
## Mediacom effect -299.6 132.0 1275 -2.270 0.0889
## Microsoft effect 48.2 141.7 1275 0.340 0.7745
## MSI effect 15.9 63.2 1275 0.252 0.8012
## Razer effect 895.8 133.8 1275 6.696 <.0001
## Samsung effect -94.4 117.1 1275 -0.805 0.6149
## Toshiba effect 98.4 59.4 1275 1.657 0.2582
## Vero effect -174.3 171.6 1275 -1.016 0.4909
## Xiaomi effect -206.1 170.4 1275 -1.210 0.4303
##
## Results are averaged over the levels of: TypeName, SolidStateDisk
## P value adjustment: fdr method for 19 tests
##
## $contrasts
## contrast estimate SE df t.ratio p.value
## Acer - Apple effect -217.01 101.5 1275 -2.139 0.1396
## Acer - Asus effect 11.22 56.4 1275 0.199 0.9166
## Acer - Chuwi effect 142.42 224.1 1275 0.635 0.7460
## Acer - Dell effect -46.78 52.2 1275 -0.897 0.6390
## Acer - Fujitsu effect 13.92 218.4 1275 0.064 0.9719
## Acer - Google effect -240.62 219.6 1275 -1.096 0.5253
## Acer - HP effect -138.89 52.0 1275 -2.670 0.0437
## Acer - Huawei effect 10.50 258.6 1275 0.041 0.9791
## Acer - Lenovo effect -60.37 51.5 1275 -1.173 0.5027
## Acer - LG effect -610.33 208.9 1275 -2.922 0.0263
## Acer - Mediacom effect 176.44 139.9 1275 1.261 0.4548
## Acer - Microsoft effect -171.33 149.8 1275 -1.144 0.5151
## Acer - MSI effect -139.05 71.6 1275 -1.941 0.1866
## Acer - Razer effect -1018.91 138.6 1275 -7.352 <.0001
## Acer - Samsung effect -28.77 120.5 1275 -0.239 0.9166
## Acer - Toshiba effect -221.53 67.0 1275 -3.306 0.0088
## Acer - Vero effect 51.20 167.4 1275 0.306 0.8899
## Acer - Xiaomi effect 83.03 164.6 1275 0.504 0.8203
## Apple - Asus effect 293.83 88.6 1275 3.316 0.0088
## Apple - Chuwi effect 425.03 233.8 1275 1.818 0.2280
## Apple - Dell effect 235.83 85.4 1275 2.762 0.0391
## Apple - Fujitsu effect 296.53 230.0 1275 1.289 0.4504
## Apple - Google effect 41.98 225.8 1275 0.186 0.9168
## Apple - HP effect 143.71 86.3 1275 1.666 0.2828
## Apple - Huawei effect 293.10 264.7 1275 1.107 0.5253
## Apple - Lenovo effect 222.24 86.1 1275 2.580 0.0550
## Apple - LG effect -327.72 216.5 1275 -1.513 0.3484
## Apple - Mediacom effect 459.05 156.2 1275 2.939 0.0260
## Apple - Microsoft effect 111.28 160.0 1275 0.696 0.7246
## Apple - MSI effect 143.56 100.2 1275 1.433 0.3769
## Apple - Razer effect -736.30 151.8 1275 -4.851 <.0001
## Apple - Samsung effect 253.84 136.1 1275 1.865 0.2136
## Apple - Toshiba effect 61.08 95.6 1275 0.639 0.7460
## Apple - Vero effect 333.81 180.7 1275 1.847 0.2178
## Apple - Xiaomi effect 365.64 176.6 1275 2.070 0.1537
## Asus - Chuwi effect 196.80 223.9 1275 0.879 0.6492
## Asus - Dell effect 7.60 49.6 1275 0.153 0.9386
## Asus - Fujitsu effect 68.29 218.2 1275 0.313 0.8899
## Asus - Google effect -186.25 218.6 1275 -0.852 0.6568
## Asus - HP effect -84.52 50.4 1275 -1.678 0.2828
## Asus - Huawei effect 64.87 257.9 1275 0.252 0.9166
## Asus - Lenovo effect -6.00 49.3 1275 -0.122 0.9522
## Asus - LG effect -555.95 207.9 1275 -2.674 0.0437
## Asus - Mediacom effect 230.82 139.5 1275 1.655 0.2845
## Asus - Microsoft effect -116.95 148.6 1275 -0.787 0.6709
## Asus - MSI effect -84.67 66.5 1275 -1.274 0.4504
## Asus - Razer effect -964.53 136.0 1275 -7.093 <.0001
## Asus - Samsung effect 25.61 119.3 1275 0.215 0.9166
## Asus - Toshiba effect -167.15 65.5 1275 -2.551 0.0580
## Asus - Vero effect 105.58 167.2 1275 0.631 0.7460
## Asus - Xiaomi effect 137.41 163.7 1275 0.840 0.6568
## Chuwi - Dell effect -123.61 194.8 1275 -0.634 0.7460
## Chuwi - Fujitsu effect -62.91 288.7 1275 -0.218 0.9166
## Chuwi - Google effect -317.45 287.2 1275 -1.105 0.5253
## Chuwi - HP effect -215.72 195.1 1275 -1.106 0.5253
## Chuwi - Huawei effect -66.33 320.0 1275 -0.207 0.9166
## Chuwi - Lenovo effect -137.20 195.0 1275 -0.704 0.7246
## Chuwi - LG effect -687.16 281.5 1275 -2.441 0.0744
## Chuwi - Mediacom effect 99.61 232.7 1275 0.428 0.8421
## Chuwi - Microsoft effect -248.15 240.5 1275 -1.032 0.5558
## Chuwi - MSI effect -215.87 201.6 1275 -1.071 0.5353
## Chuwi - Razer effect -1095.73 232.4 1275 -4.714 <.0001
## Chuwi - Samsung effect -105.59 224.2 1275 -0.471 0.8291
## Chuwi - Toshiba effect -298.35 200.2 1275 -1.491 0.3534
## Chuwi - Vero effect -25.63 249.6 1275 -0.103 0.9522
## Chuwi - Xiaomi effect 6.20 249.8 1275 0.025 0.9833
## Dell - Fujitsu effect 126.30 217.3 1275 0.581 0.7739
## Dell - Google effect -128.25 217.6 1275 -0.589 0.7727
## Dell - HP effect -26.52 46.3 1275 -0.573 0.7752
## Dell - Huawei effect 122.87 257.0 1275 0.478 0.8291
## Dell - Lenovo effect 52.01 45.4 1275 1.146 0.5151
## Dell - LG effect -497.95 207.0 1275 -2.406 0.0795
## Dell - Mediacom effect 288.82 138.2 1275 2.090 0.1499
## Dell - Microsoft effect -58.95 147.1 1275 -0.401 0.8421
## Dell - MSI effect -26.67 66.7 1275 -0.400 0.8421
## Dell - Razer effect -906.53 134.9 1275 -6.720 <.0001
## Dell - Samsung effect 83.61 117.6 1275 0.711 0.7246
## Dell - Toshiba effect -109.15 62.3 1275 -1.752 0.2533
## Dell - Vero effect 163.58 166.2 1275 0.984 0.5899
## Dell - Xiaomi effect 195.41 162.5 1275 1.203 0.4843
## Fujitsu - Google effect -188.94 292.4 1275 -0.646 0.7460
## Fujitsu - HP effect -87.21 198.8 1275 -0.439 0.8421
## Fujitsu - Huawei effect 62.17 322.0 1275 0.193 0.9166
## Fujitsu - Lenovo effect -8.69 198.6 1275 -0.044 0.9791
## Fujitsu - LG effect -558.65 283.6 1275 -1.970 0.1823
## Fujitsu - Mediacom effect 228.12 237.9 1275 0.959 0.5956
## Fujitsu - Microsoft effect -119.65 243.6 1275 -0.491 0.8264
## Fujitsu - MSI effect -87.37 205.1 1275 -0.426 0.8421
## Fujitsu - Razer effect -967.23 237.3 1275 -4.076 0.0006
## Fujitsu - Samsung effect 22.91 226.6 1275 0.101 0.9522
## Fujitsu - Toshiba effect -169.85 202.8 1275 -0.838 0.6568
## Fujitsu - Vero effect 102.88 255.4 1275 0.403 0.8421
## Fujitsu - Xiaomi effect 134.71 252.7 1275 0.533 0.7998
## Google - HP effect 167.33 204.6 1275 0.818 0.6574
## Google - Huawei effect 316.72 323.5 1275 0.979 0.5899
## Google - Lenovo effect 245.85 204.5 1275 1.202 0.4843
## Google - LG effect -304.11 285.1 1275 -1.067 0.5353
## Google - Mediacom effect 482.66 240.8 1275 2.004 0.1720
## Google - Microsoft effect 134.89 245.1 1275 0.550 0.7901
## Google - MSI effect 167.17 210.4 1275 0.794 0.6700
## Google - Razer effect -712.69 239.3 1275 -2.979 0.0240
## Google - Samsung effect 277.45 230.5 1275 1.204 0.4843
## Google - Toshiba effect 84.69 208.6 1275 0.406 0.8421
## Google - Vero effect 357.42 257.8 1275 1.386 0.3941
## Google - Xiaomi effect 389.25 255.2 1275 1.525 0.3461
## HP - Huawei effect 214.99 257.1 1275 0.836 0.6568
## HP - Lenovo effect 144.12 45.9 1275 3.137 0.0149
## HP - LG effect -405.84 207.2 1275 -1.958 0.1834
## HP - Mediacom effect 380.93 138.5 1275 2.751 0.0391
## HP - Microsoft effect 33.16 147.4 1275 0.225 0.9166
## HP - MSI effect 65.44 68.3 1275 0.959 0.5956
## HP - Razer effect -814.42 136.2 1275 -5.978 <.0001
## HP - Samsung effect 175.72 117.9 1275 1.490 0.3534
## HP - Toshiba effect -17.04 62.5 1275 -0.273 0.9073
## HP - Vero effect 255.69 166.5 1275 1.536 0.3461
## HP - Xiaomi effect 287.52 162.8 1275 1.766 0.2505
## Huawei - Lenovo effect -5.27 251.5 1275 -0.021 0.9833
## Huawei - LG effect -555.23 320.5 1275 -1.732 0.2596
## Huawei - Mediacom effect 231.54 284.1 1275 0.815 0.6574
## Huawei - Microsoft effect -116.22 285.2 1275 -0.407 0.8421
## Huawei - MSI effect -83.95 256.6 1275 -0.327 0.8892
## Huawei - Razer effect -963.80 281.5 1275 -3.424 0.0067
## Huawei - Samsung effect 26.34 272.7 1275 0.097 0.9522
## Huawei - Toshiba effect -166.42 254.7 1275 -0.653 0.7460
## Huawei - Vero effect 106.30 298.8 1275 0.356 0.8696
## Huawei - Xiaomi effect 138.13 295.3 1275 0.468 0.8291
## Lenovo - LG effect -484.36 207.3 1275 -2.336 0.0932
## Lenovo - Mediacom effect 302.41 138.5 1275 2.183 0.1312
## Lenovo - Microsoft effect -45.36 147.5 1275 -0.308 0.8899
## Lenovo - MSI effect -13.08 67.3 1275 -0.194 0.9166
## Lenovo - Razer effect -892.94 135.8 1275 -6.577 <.0001
## Lenovo - Samsung effect 97.20 117.8 1275 0.825 0.6574
## Lenovo - Toshiba effect -95.56 62.6 1275 -1.527 0.3461
## Lenovo - Vero effect 177.17 166.7 1275 1.063 0.5353
## Lenovo - Xiaomi effect 209.00 162.8 1275 1.283 0.4504
## LG - Mediacom effect 852.37 249.7 1275 3.413 0.0067
## LG - Microsoft effect 504.60 251.5 1275 2.006 0.1720
## LG - MSI effect 536.88 218.1 1275 2.462 0.0723
## LG - Razer effect -342.98 247.3 1275 -1.387 0.3941
## LG - Samsung effect 647.16 236.5 1275 2.736 0.0391
## LG - Toshiba effect 454.40 215.6 1275 2.108 0.1470
## LG - Vero effect 727.13 266.3 1275 2.731 0.0391
## LG - Xiaomi effect 758.96 262.0 1275 2.897 0.0273
## Mediacom - Microsoft effect -282.17 201.5 1275 -1.400 0.3941
## Mediacom - MSI effect -249.89 152.5 1275 -1.639 0.2891
## Mediacom - Razer effect -1129.75 193.1 1275 -5.850 <.0001
## Mediacom - Samsung effect -139.61 181.5 1275 -0.769 0.6809
## Mediacom - Toshiba effect -332.37 150.6 1275 -2.208 0.1269
## Mediacom - Vero effect -59.64 213.1 1275 -0.280 0.9069
## Mediacom - Xiaomi effect -27.81 212.0 1275 -0.131 0.9513
## Microsoft - MSI effect 97.88 165.1 1275 0.593 0.7727
## Microsoft - Razer effect -781.98 201.4 1275 -3.883 0.0012
## Microsoft - Samsung effect 208.16 189.2 1275 1.100 0.5253
## Microsoft - Toshiba effect 15.40 162.2 1275 0.095 0.9522
## Microsoft - Vero effect 288.12 224.9 1275 1.281 0.4504
## Microsoft - Xiaomi effect 319.95 220.4 1275 1.452 0.3691
## MSI - Razer effect -814.26 143.0 1275 -5.693 <.0001
## MSI - Samsung effect 175.88 131.0 1275 1.343 0.4207
## MSI - Toshiba effect -16.88 84.5 1275 -0.200 0.9166
## MSI - Vero effect 255.85 175.9 1275 1.454 0.3691
## MSI - Xiaomi effect 287.68 172.2 1275 1.670 0.2828
## Razer - Samsung effect 1055.74 185.6 1275 5.689 <.0001
## Razer - Toshiba effect 862.98 157.2 1275 5.490 <.0001
## Razer - Vero effect 1135.70 220.3 1275 5.156 <.0001
## Razer - Xiaomi effect 1167.53 217.0 1275 5.381 <.0001
## Samsung - Toshiba effect -127.16 139.7 1275 -0.910 0.6330
## Samsung - Vero effect 145.56 209.5 1275 0.695 0.7246
## Samsung - Xiaomi effect 177.39 204.9 1275 0.866 0.6547
## Toshiba - Vero effect 338.32 175.0 1275 1.933 0.1866
## Toshiba - Xiaomi effect 370.15 170.3 1275 2.173 0.1312
## Vero - Xiaomi effect 97.43 251.9 1275 0.387 0.8478
##
## Results are averaged over the levels of: TypeName, SolidStateDisk
## P value adjustment: fdr method for 171 tests
lm_full = lm(Price ~ ., data = data)
summary(lm_full)
##
## Call:
## lm(formula = Price ~ ., data = data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -204.00 -5.65 0.00 6.47 390.40
##
## Coefficients: (158 not defined because of singularities)
## Estimate
## (Intercept) -5.014e+03
## X -1.277e-02
## CompanyApple -1.716e+03
## CompanyAsus -1.092e+03
## CompanyChuwi -1.524e+03
## CompanyDell 4.220e+02
## CompanyFujitsu -1.067e+03
## CompanyGoogle -9.854e+02
## CompanyHP 2.085e+02
## CompanyHuawei -1.004e+03
## CompanyLenovo -1.433e+03
## CompanyLG -8.045e+02
## CompanyMediacom -1.741e+03
## CompanyMicrosoft -1.192e+03
## CompanyMSI -1.273e+03
## CompanyRazer -2.100e+03
## CompanySamsung -1.260e+03
## CompanyToshiba -1.141e+03
## CompanyVero -1.142e+03
## CompanyXiaomi -1.047e+03
## Product14-am079na (N3710/8GB/2TB/W10) -1.011e+03
## Product15-AC110nv (i7-6500U/6GB/1TB/Radeon -1.201e+03
## Product15-AY023na (N3710/8GB/2TB/W10) -1.063e+03
## Product15-ay047nv (i3-6006U/6GB/1TB/Radeon -1.151e+03
## Product15-BA015wm (E2-7110/4GB/500GB/W10) -1.614e+03
## Product15-ba043na (A12-9700P/8GB/2TB/W10) -2.103e+03
## Product15-bs002nv (i3-6006U/4GB/128GB/FHD/W10) -1.048e+03
## Product15-bs005nv (i3-6006U/4GB/1TB -1.072e+03
## Product15-bs011nv (i7-7500U/4GB/500GB/Radeon -1.199e+03
## Product15-bs012nv (i7-7500U/8GB/1TB/Radeon -1.195e+03
## Product15-bs015dx (i5-7200U/8GB/1TB/W10) -1.148e+03
## Product15-bs017nv (i7-7500U/8GB/256GB/Radeon -1.138e+03
## Product15-bs018nq (i3-6006U/4GB/500GB/FHD/No -9.996e+02
## Product15-bs023nv (i3-6006U/4GB/1TB/FHD/W10) -1.133e+03
## Product15-bs024nv (i5-7200U/8GB/128GB/W10) -1.126e+03
## Product15-bs025nv (i5-7200U/8GB/256GB/W10) -1.099e+03
## Product15-BS026nv (i5-7200U/8GB/256GB/Radeon -1.073e+03
## Product15-BS028nv (i3-6006U/4GB/1TB/Radeon -1.074e+03
## Product15-bs053od (i7-7500U/6GB/1TB/W10) -1.115e+03
## Product15-bs078cl (i7-7500U/8GB/2TB/W10) -1.110e+03
## Product15-BS078nr (i7-7500U/8GB/1TB/W10) -1.152e+03
## Product15-BS101nv (i7-8550U/8GB/256GB/FHD/W10) -1.177e+03
## Product15-BS103nv (i5-8250U/6GB/256GB/Radeon -1.077e+03
## Product15-bs190od (i5-8250U/4GB/1TB/W10) -1.071e+03
## Product15-bw000nv (E2-9000e/4GB/500GB/Radeon -1.763e+03
## Product15-bw002nv (A6-9220/4GB/256GB/Radeon -1.962e+03
## Product15-bw003nv (A9-Series-9420/4GB/256GB/FHD/W10) -1.095e+03
## Product15-BW004nv (A9-9420/4GB/256GB/Radeon -1.166e+03
## Product15-bw007nv (A10-9620P/6GB/128GB/Radeon -2.151e+03
## Product15-bw009nv (A12-9720P/6GB/1TB/Radeon -1.115e+03
## Product15-bw011nv (A6-9220/4GB/1TB/FHD/W10) -1.606e+03
## Product15-BW037na (A9-9420/4GB/1TB/Radeon -1.185e+03
## Product15-BW091ND (A9-9420/6GB/1TB -2.169e+03
## Product15-BW094nd (A6-9220/8GB/128GB/W10) -1.913e+03
## Product15-cb003na (i5-7300HQ/8GB/1TB -1.545e+03
## Product15-cd005nv (A9-9420/6GB/256GB/Radeon -2.218e+03
## Product15-ra044nv (N3060/4GB/500GB/W10) -1.210e+03
## Product15-rb013nv (E2-9000e/4GB/500GB/W10) -1.729e+03
## Product17-ak001nv (A6-9220/4GB/500GB/Radeon -1.865e+03
## Product17-ak002nv (A10-9620P/6GB/2TB/Radeon -1.335e+03
## Product17-AK091ND (A9-9420/8GB/1TB/W10) -1.273e+03
## Product17-bs000nv I3 -1.321e+03
## Product17-bs001nv (i5-7200U/6GB/2TB/Radeon -1.223e+03
## Product17-BS037cl (i3-6006U/8GB/1TB/W10) -1.257e+03
## Product17-BS092ND (i3-6006U/8GB/256GB/W10) -1.375e+03
## Product17-X047na (i3-6006U/8GB/1TB/W10) -1.328e+03
## Product17-Y002nv (A10-9600P/6GB/2TB/Radeon -2.311e+03
## Product250 G4 -1.074e+03
## Product250 G5 -1.196e+03
## Product250 G6 -1.079e+03
## Product255 G6 -1.572e+03
## Product320-15ISK (i3-6006U/4GB/1TB/GeForce 5.961e+02
## ProductA541NA-GO342 (N3350/4GB/500GB/Linux) 6.226e+02
## ProductA715-71G-59DH (i5-7300HQ/8GB/1TB/GeForce -1.305e+03
## ProductAlienware 15 -1.554e+03
## ProductAlienware 17 -1.580e+03
## ProductAspire 1 -1.427e+03
## ProductAspire 3 -8.264e+02
## ProductAspire 5 -9.609e+02
## ProductAspire 7 -1.347e+03
## ProductAspire A315-31 -7.496e+02
## ProductAspire A315-51 -8.794e+02
## ProductAspire A515-51G -9.553e+02
## ProductAspire A515-51G-32MX -7.562e+02
## ProductAspire A515-51G-37JS -7.640e+02
## ProductAspire A515-51G-59QF -8.923e+02
## ProductAspire A517-51G -1.082e+03
## ProductAspire A715-71G -1.351e+03
## ProductAspire E5-475 -7.746e+02
## ProductAspire E5-575 -9.313e+02
## ProductAspire E5-576G -9.761e+02
## ProductAspire E5-774G -1.255e+03
## ProductAspire ES1-523 -1.706e+03
## ProductAspire ES1-531 -9.048e+02
## ProductAspire ES1-533 -8.885e+02
## ProductAspire ES1-572 -8.620e+02
## ProductAspire F5-573G -9.200e+02
## ProductAspire F5-573G-510L -1.018e+03
## ProductAspire R7 -9.280e+02
## ProductAspire VX5-591G -1.347e+03
## ProductB51-80 (i5-6200U/8GB/1008GB/Radeon 4.767e+02
## ProductB51-80 (i5-6200U/8GB/1TB/Radeon 5.365e+02
## ProductB51-80 (i7-6500U/4GB/1008GB/FHD/W7) 2.843e+02
## ProductB51-80 (i7-6500U/8GB/1008GB/Radeon 3.496e+02
## ProductBlade Pro 1.539e+03
## ProductBlade Stealth NA
## ProductC740-C9QX (3205U/2GB/32GB/Chrome -1.195e+03
## ProductCB5-132T-C9KK (N3160/4GB/32GB/Chrome -1.784e+03
## ProductChromebook 11 -1.075e+03
## ProductChromebook 13 -2.145e+03
## ProductChromebook 14 -1.101e+03
## ProductChromebook 15 -1.588e+03
## ProductChromebook 3 6.922e+02
## ProductChromebook C202SA 4.698e+02
## ProductChromebook C731-C78G -9.196e+02
## ProductChromebook C738T-C2EJ -1.123e+03
## ProductChromebook C910-C2ST -1.544e+03
## ProductChromebook CB5-571-C1DZ -1.692e+03
## ProductChromebook Flip -1.323e+03
## ProductChromebook N23 4.799e+02
## ProductChromebook Plus -7.874e+02
## ProductChromebook X360 -1.521e+03
## ProductE402WA-GA007T (E2-6110/4GB/64GB/W10 -6.010e+02
## ProductE402WA-GA010T (E2-6110/2GB/32GB/W10) 1.005e+02
## ProductE5 774G -1.168e+03
## ProductEliteBook 1030 -2.123e+03
## ProductElitebook 1040 -1.151e+03
## ProductEliteBook 1040 -1.179e+03
## ProductElitebook 820 -1.155e+03
## ProductEliteBook 820 -1.131e+03
## ProductElitebook 840 -1.192e+03
## ProductEliteBook 840 -1.222e+03
## ProductElitebook 850 -1.299e+03
## ProductEliteBook 850 -1.256e+03
## ProductElitebook Folio -1.766e+03
## ProductEliteBook Folio -2.028e+03
## ProductEliteBook x360 -9.587e+02
## ProductENVY - -1.248e+03
## ProductEnvy 13-AB002nv -1.284e+03
## ProductEnvy 13-AB020nr -1.223e+03
## ProductEnvy 13-AB077cl -1.250e+03
## ProductEnvy 13-AD007nv -1.119e+03
## ProductEnvy 13-ad009n -1.131e+03
## ProductEnvy 17-U275cl -1.395e+03
## ProductEnvy x360 -1.265e+03
## ProductES1-523-84K7 (A8-7410/8GB/256GB/FHD/W10) -1.737e+03
## ProductExtensa EX2540 -9.422e+02
## ProductExtensa EX2540-58KR -9.480e+02
## ProductF756UX-T4201D (i7-7500U/8GB/128GB -7.317e-01
## ProductFlex 5 4.065e+02
## ProductFlexBook Edge 1.038e+03
## ProductFX502VM-AS73 (i7-7700HQ/16GB/1TB -9.779e+01
## ProductFX502VM-DM105T (i7-6700HQ/8GB/1TB/GeForce -2.007e+02
## ProductFX502VM-DM560T (i7-7700HQ/8GB/1TB 3.927e+01
## ProductFX503VD-E4022T (i7-7700HQ/8GB/1TB/GeForce -2.596e+02
## ProductFX503VM-E4007T (i7-7700HQ/16GB/1TB -2.456e+02
## ProductFX550IK-DM018T (FX-9830P/8GB/1TB/Radeon -9.484e+02
## ProductFX553VD-DM627T (i5-7300HQ/8GB/1TB -1.792e+02
## ProductFX553VD-FY647T (i7-7700HQ/8GB/256GB/GeForce -2.452e+02
## ProductFX753VD-GC007T (i7-7700HQ/8GB/1TB -3.295e+02
## ProductFX753VD-GC071T (i7-7700HQ/8GB/1TB/GeForce -3.700e+02
## ProductFX753VD-GC086T (i5-7300HQ/8GB/1TB -3.080e+02
## ProductFX753VD-GC461T (i7-7700HQ/16GB/1TB -2.839e+02
## ProductFX753VE-GC093 (i7-7700HQ/12GB/1TB/GeForce -4.015e+02
## ProductFX753VE-GC155T (i7-7700HQ/16GB/1TB -3.014e+01
## ProductG701VO-IH74K (i7-6820HK/32GB/2x 4.654e+02
## ProductG752VY-GC162T (i7-6700HQ/16GB/1TB 1.894e+02
## ProductGE62 Apache 2.443e+02
## ProductGE63VR 7RE 4.689e+01
## ProductGE63VR 7RF -1.346e+02
## ProductGE72 Apache 2.103e+02
## ProductGE72MVR 7RG -1.018e+02
## ProductGE72VR 6RF -5.122e+01
## ProductGE72VR Apache -3.381e+01
## ProductGE73VR 7RE 4.422e+01
## ProductGE73VR 7RF -7.675e+01
## ProductGL553VE-FY082T (i7-7700HQ/8GB/1TB -2.391e+02
## ProductGL62 6QF 2.477e+02
## ProductGL62M (i5-7300HQ/8GB/1TB -4.783e+01
## ProductGL62M 7RD -5.334e+01
## ProductGL62M 7RDX -4.789e+01
## ProductGL62M 7REX -4.011e+01
## ProductGL72M 7RDX -1.286e+02
## ProductGL72M 7REX -9.874e+01
## ProductGP62 7RDX -6.575e+01
## ProductGP62M 7RDX -6.043e+01
## ProductGP62M 7REX -4.627e+01
## ProductGP62M Leopard -5.098e+01
## ProductGP62MVR 6RF 5.479e+01
## ProductGP72M 7REX -7.476e+01
## ProductGP72MVR 7RFX -8.186e+01
## ProductGP72VR Leopard -6.228e+01
## ProductGram 14Z970 -5.741e+01
## ProductGram 15Z970 -5.113e+01
## ProductGram 15Z975 NA
## ProductGS40 Phantom 4.384e+02
## ProductGS43VR 7RE 1.785e+02
## ProductGS60 Ghost 5.180e+02
## ProductGS63VR 6RF 2.121e+02
## ProductGS63VR 7RF 2.675e+02
## ProductGS63VR 7RG 3.426e+01
## ProductGS70 Stealth 2.509e+02
## ProductGS73VR 7RF 1.444e+02
## ProductGS73VR 7RG 5.611e+01
## ProductGS73VR Stealth 1.691e+02
## ProductGT62VR 6RD 1.048e+02
## ProductGT62VR 7RE -2.658e+01
## ProductGT72S Dominator 7.824e+02
## ProductGT72VR Dominator 3.825e+00
## ProductGT73EVR 7RE -5.057e+01
## ProductGT73VR Titan -8.802e+01
## ProductGT80S 6QE 1.258e+03
## ProductGT80S 6QF-074US -5.097e+02
## ProductGV62 7RD-1686NL -4.534e+01
## ProductGV62M 7RD -3.810e+01
## ProductIdeaPad 100S-14IBR 8.105e+02
## ProductIdeaPad 110-15IBR -1.844e+02
## ProductIdeaPad 110-15ISK 4.853e+02
## ProductIdeaPad 110-17ACL -4.020e+02
## ProductIdeaPad 120S-14IAP 8.211e+02
## ProductIdeaPad 300-17ISK 2.435e+02
## ProductIdeaPad 310-15ABR -3.858e+02
## ProductIdeaPad 310-15IKB 4.618e+02
## ProductIdeapad 310-15ISK 6.091e+02
## ProductIdeaPad 310-15ISK 4.302e+02
## ProductIdeaPad 320-14IAP 7.922e+02
## ProductIdeaPad 320-15ABR -6.063e+02
## ProductIdeaPad 320-15AST -2.698e+02
## ProductIdeapad 320-15IAP 4.744e+02
## ProductIdeaPad 320-15IAP 6.645e+02
## ProductIdeaPad 320-15IKB 4.077e+02
## ProductIdeapad 320-15IKBN 5.354e+02
## ProductIdeaPad 320-15IKBN 5.326e+02
## ProductIdeapad 320-15IKBR 4.308e+02
## ProductIdeapad 320-15ISK 4.538e+02
## ProductIdeaPad 320-15ISK 5.235e+02
## ProductIdeaPad 320-17IKB 3.624e+02
## ProductIdeaPad 320-17IKBR 3.589e+02
## ProductIdeaPad 320-17ISK 3.842e+02
## ProductIdeaPad 320s-14IKB 4.779e+02
## ProductIdeaPad 500-15ISK 3.253e+02
## ProductIdeaPad 510-15IKB 4.232e+02
## ProductIdeaPad 510-15ISK 3.862e+02
## ProductIdeapad 510S-13IKB 5.338e+02
## ProductIdeaPad 510s-14IKB 4.514e+02
## ProductIdeapad 520-15IKBR 3.839e+02
## ProductIdeaPad 520s-14IKB 5.219e+02
## ProductIdeaPad 520S-14IKB 3.987e+02
## ProductIdeapad 700-15ISK 3.144e+02
## ProductIdeaPad 720S-13IKB 4.100e+02
## ProductIdeaPad 720S-14IKB 3.949e+02
## ProductIdeaPad Y700-15ACZ -7.381e+02
## ProductIdeaPad Y700-15ISK 3.768e+02
## ProductIdeaPad Y900-17ISK 5.085e+02
## ProductIdeaPad Y910-17ISK 9.960e+02
## ProductInspiron 3168 -1.377e+03
## ProductInspiron 3179 -2.192e+03
## ProductInspiron 3552 -1.324e+03
## ProductInspiron 3567 -1.329e+03
## ProductInspiron 3576 -1.403e+03
## ProductInspiron 5368 -1.327e+03
## ProductInspiron 5370 -1.400e+03
## ProductInspiron 5378 -1.405e+03
## ProductInspiron 5379 -1.381e+03
## ProductInspiron 5567 -1.481e+03
## ProductInspiron 5568 -1.570e+03
## ProductInspiron 5570 -1.455e+03
## ProductInspiron 5577 -1.775e+03
## ProductInspiron 5578 -1.463e+03
## ProductInspiron 5579 -1.492e+03
## ProductInspiron 5767 -1.626e+03
## ProductInspiron 5770 -1.597e+03
## ProductInspiron 7378 -1.435e+03
## ProductInspiron 7559 -1.483e+03
## ProductInspiron 7560 -1.473e+03
## ProductInspiron 7567 -1.772e+03
## ProductInspiron 7570 -1.546e+03
## ProductInspiron 7577 -1.788e+03
## ProductInspiron 7579 -1.552e+03
## ProductInspiron 7773 -1.788e+03
## ProductInspiron 7779 -1.494e+03
## ProductInsprion 5767 -1.653e+03
## ProductK146 (N3350/4GB/32GB/W10) 9.088e+02
## ProductK147 (N3350/4GB/32GB/FHD/W10) 6.474e+02
## ProductK556UR-DM621T (i7-7500U/8GB/256GB/GeForce 1.506e+02
## ProductK756UX-T4340T (i5-7200U/8GB/500GB -2.041e+02
## ProductL403NA-GA013TS (N3350/4GB/32GB/W10) 5.573e+02
## ProductL502NA-GO052T (N3350/4GB/128GB/W10) 2.038e+02
## ProductLapBook 12.3 -3.009e+02
## ProductLapbook 15,6 -8.558e+00
## ProductLapBook 15.6" NA
## ProductLaptop MSI 1.206e+03
## ProductLatitude 3180 -1.476e+03
## ProductLatitude 3380 -1.529e+03
## ProductLatitude 3480 -1.433e+03
## ProductLatitude 3570 -1.334e+03
## ProductLatitude 3580 -1.498e+03
## ProductLatitude 5289 -1.313e+03
## ProductLatitude 5480 -1.489e+03
## ProductLatitude 5490 -1.469e+03
## ProductLatitude 5580 -1.536e+03
## ProductLatitude 5590 -1.562e+03
## ProductLatitude 7280 -1.327e+03
## ProductLatitude 7390 -1.260e+03
## ProductLatitude 7480 -1.390e+03
## ProductLatitude E5270 -1.541e+03
## ProductLatitude E5470 -1.484e+03
## ProductLatitude E5570 -1.471e+03
## ProductLatitude E7270 -1.287e+03
## ProductLatitude E7470 -1.385e+03
## ProductLegion Y520-15IKBN 5.344e+01
## ProductLegion Y720-15IKB 7.216e+01
## ProductLenovo IdeaPad 9.031e+02
## ProductLeopard GP72M -1.035e+02
## ProductLifeBook A556 1.294e+02
## ProductLifebook A557 -8.047e+00
## ProductLifeBook A557 NA
## ProductMacBook 12" -4.247e+02
## ProductMacbook Air -2.477e+02
## ProductMacBook Air -2.581e+02
## ProductMacBook Pro NA
## ProductMateBook X NA
## ProductMi Notebook NA
## ProductN23 (N3060/4GB/128GB/W10) 4.349e+02
## ProductN42-20 Chromebook -1.017e+02
## ProductNitro 5 -1.381e+03
## ProductNitro AN515-51 -1.328e+03
## ProductNoteb Pav -1.305e+03
## ProductNotebook 9 3.441e+02
## ProductNotebook Odyssey NA
## ProductOmen - -1.680e+03
## ProductOmen 15-AX205na -1.571e+03
## ProductOmen 15-ce006nv -1.501e+03
## ProductOmen 15-ce007nv -1.612e+03
## ProductOmen 17-an006nv -1.634e+03
## ProductOmen 17-AN010nv -1.672e+03
## ProductOmen 17-an012dx -1.376e+03
## ProductOmen 17-W006na -1.391e+03
## ProductOmen 17-w207nv -1.689e+03
## ProductOmen 17-w212nv -1.685e+03
## ProductOmen 17-W295 -1.676e+03
## ProductPavilion 14-BK001nv -1.096e+03
## ProductPavilion 15-AW003nv -2.213e+03
## ProductPavilion 15-BC000nv -1.201e+03
## ProductPavilion 15-cb003nv -1.590e+03
## ProductPavilion 15-CK000nv -1.204e+03
## ProductPavilion Power -1.548e+03
## ProductPavilion x360 -1.288e+03
## ProductPavilion X360 -1.193e+03
## ProductPixelbook (Core NA
## ProductPL60 7RD NA
## ProductPortege A30-C-1CZ 1.374e+02
## ProductPortege X20W-D-10V 2.864e+02
## ProductPortege X30-D-10J 1.992e+02
## ProductPortege X30-D-10K 3.950e+02
## ProductPortege X30-D-10L 6.674e+02
## ProductPortege X30-D-10V 1.855e+02
## ProductPortege X30-D-10X 1.616e+02
## ProductPortege Z30-C-16H 1.744e+02
## ProductPortege Z30-C-16J 1.636e+02
## ProductPortégé Z30-C-16K 2.204e+02
## ProductPortege Z30-C-16L 1.127e+02
## ProductPortege Z30-C-16P 1.313e+02
## ProductPortege Z30-C-16Z 2.347e+02
## ProductPortégé Z30-C-188 1.414e+02
## ProductPortege Z30-C-1CV 1.244e+02
## ProductPortege Z30-C-1CW 1.502e+02
## ProductPortege Z30T-C-133 2.025e+02
## ProductPrecision 3510 -2.751e+03
## ProductPrecision 3520 -1.444e+03
## ProductPrecision 5520 -7.208e+01
## ProductPrecision 7520 5.008e+02
## ProductPrecision 7720 2.963e+02
## ProductPrecision M5520 -4.653e+00
## ProductPredator 17 -1.301e+03
## ProductPredator G9-793 -1.211e+03
## ProductPro P2540UA-AB51 1.368e+01
## ProductPro P2540UA-XO0192R 3.445e+01
## ProductPro P2540UA-XO0198T 2.862e+02
## ProductPro P2540UA-XS51 -3.811e+01
## ProductProbook 430 -1.266e+03
## ProductProBook 430 -1.200e+03
## ProductProbook 440 -1.245e+03
## ProductProBook 440 -1.250e+03
## ProductProbook 450 -1.295e+03
## ProductProBook 450 -1.306e+03
## ProductProbook 470 -1.389e+03
## ProductProBook 470 -1.407e+03
## ProductProbook 640 -1.276e+03
## ProductProBook 640 -1.286e+03
## ProductProbook 650 -1.344e+03
## ProductProBook 650 -1.338e+03
## ProductProBook x360 -1.336e+03
## ProductQ304UA-BHI5T11 (i5-7200U/6GB/1TB/FHD/W10) 2.208e+02
## ProductQ524UQ-BHI7T15 (i7-7500U/12GB/2TB/GeForce 9.459e+01
## ProductQ534UX-BHI7T19 (i7-7500U/16GB/2TB -1.153e+01
## ProductR417NA-RS01 (N3350/4GB/32GB/W10) 4.822e+02
## ProductR558UA-DM966T (i5-7200U/8GB/128GB/FHD/W10) -7.362e+01
## ProductROG G701VI -2.651e+02
## ProductRog G701VIK-BA060T -1.052e+03
## ProductROG G701VO 1.682e+03
## ProductROG G703VI-E5062T -5.843e+02
## ProductRog G752VL-GC088D -2.330e+02
## ProductRog G752VL-UH71T -1.199e+02
## ProductRog G752VS-BA171T -2.847e+02
## ProductROG G752VSK-GC493T -2.033e+01
## ProductRog G752VT-GC073T 3.027e+01
## ProductRog G752VY-GC229T 1.179e+02
## ProductRog GL502VM-DS74 -6.033e+01
## ProductRog GL502VS -1.328e+02
## ProductRog GL552VW-CN470T -5.880e-01
## ProductRog GL552VW-DM201T 6.904e+01
## ProductRog GL553VE-DS74 -1.105e+02
## ProductROG GL553VE-FY022 -3.763e+02
## ProductRog GL553VE-FY052T -2.033e+02
## ProductRog GL702VM-GC017T -1.443e+02
## ProductRog GL702VM-GC354T -2.212e+02
## ProductRog GL702VS-BA023T -1.729e+02
## ProductRog GL702VS-GC095T -3.251e+02
## ProductROG GL703VD-GC028T -3.121e+02
## ProductRog GL752VW-T4308T -4.208e+01
## ProductRog GL753VD-GC042T -3.625e+02
## ProductRog GL753VD-GC082T -2.733e+02
## ProductRog GL753VE-DS74 -2.024e+02
## ProductRog GL753VE-GC070T -2.590e+02
## ProductRog Strix -6.137e+01
## ProductROG Strix -1.575e+02
## ProductROG Zephyrus 6.356e+02
## ProductSatellite Pro 7.945e+01
## ProductSmartBook 130 4.415e+02
## ProductSmartBook 140 5.193e+02
## ProductSmartBook 141 2.808e+02
## ProductSmartbook 142 1.866e+02
## ProductSmartBook Edge NA
## ProductSP315-51 (i7-7500U/12GB/1TB/FHD/W10) -9.835e+02
## ProductSP714-51 (i7-7Y75/8GB/256GB/FHD/W10) -1.027e+03
## ProductSpectre 13-V100nv -1.235e+03
## ProductSpectre 13-V111dx -1.160e+03
## ProductSpectre Pro -1.118e+03
## ProductSpectre x360 -1.184e+03
## ProductSpectre X360 -1.219e+03
## ProductSpin 3 -9.004e+02
## ProductSpin 5 -9.816e+02
## ProductSpin SP111-31 -1.392e+03
## ProductStream 11-Y000na -5.337e+02
## ProductStream 14-AX000nv -8.255e+02
## ProductStream 14-AX001nv -9.378e+02
## ProductStream 14-AX040wm -9.632e+02
## ProductSurface Laptop NA
## ProductSwift 3 -1.007e+03
## ProductSwift 7 -1.111e+03
## ProductSwift SF114-31-P5HY -6.472e+02
## ProductTecra A40-C-1DF 1.048e+02
## ProductTecra A40-C-1E5 5.097e+01
## ProductTecra A40-C-1KF 8.783e+01
## ProductTecra A50-C-1ZV 3.331e+01
## ProductTecra A50-C-218 6.030e+01
## ProductTecra A50-C-21G -4.501e+00
## ProductTecra A50-D-11D 4.297e+01
## ProductTecra A50-D-11M -5.881e+01
## ProductTecra X40-D-10G 1.830e+02
## ProductTecra X40-D-10H 2.315e+02
## ProductTecra X40-D-10Z 1.006e+02
## ProductTecra Z40-C-12X 1.069e+02
## ProductTecra Z40-C-12Z 1.400e+02
## ProductTecra Z40-C-136 1.802e+02
## ProductTecra Z40-C-161 2.169e+02
## ProductTecra Z50-C-140 2.659e+02
## ProductTecra Z50-C-144 -1.743e+01
## ProductTecra Z50-D-10E NA
## ProductThinkpad 13 4.120e+02
## ProductThinkPad 13 3.966e+02
## ProductThinkpad E470 4.351e+02
## ProductThinkPad E470 4.034e+02
## ProductThinkPad E480 3.653e+02
## ProductThinkpad E570 3.379e+02
## ProductThinkPad E570 3.195e+02
## ProductThinkPad E580 3.196e+02
## ProductThinkPad L460 3.742e+02
## ProductThinkPad L470 3.422e+02
## ProductThinkpad L560 3.399e+02
## ProductThinkPad L570 2.744e+02
## ProductThinkPad P40 6.243e+02
## ProductThinkpad P50 6.882e+02
## ProductThinkpad P51 8.702e+02
## ProductThinkPad P51 1.516e+03
## ProductThinkpad P51s 6.640e+02
## ProductThinkPad P51s 2.178e+02
## ProductThinkPad P70 8.695e+02
## ProductThinkpad P71 9.783e+02
## ProductThinkpad T460 4.079e+02
## ProductThinkPad T460 3.764e+02
## ProductThinkpad T460p 3.199e+02
## ProductThinkpad T460s 5.706e+02
## ProductThinkPad T460s 6.367e+02
## ProductThinkpad T470 4.075e+02
## ProductThinkPad T470 3.953e+02
## ProductThinkpad T470p 2.143e+02
## ProductThinkPad T470p 5.282e+02
## ProductThinkpad T470s 5.711e+02
## ProductThinkPad T470s 5.291e+02
## ProductThinkpad T560 3.395e+02
## ProductThinkPad T560 3.481e+02
## ProductThinkpad T570 2.382e+02
## ProductThinkPad T570 3.739e+02
## ProductThinkpad X1 7.453e+02
## ProductThinkPad X1 7.268e+02
## ProductThinkpad X260 3.885e+02
## ProductThinkpad X270 4.874e+02
## ProductThinkPad X270 4.809e+02
## ProductThinkpad Yoga 6.041e+02
## ProductThinkPad Yoga 5.198e+02
## ProductTMX349-G2-M-50FS (i5-7200U/8GB/256GB/FHD/W10) -1.040e+03
## ProductTP501UA-CJ131T (i5-7200U/8GB/1TB/W10) 2.093e+00
## ProductTravelMate B -8.736e+02
## ProductTravelMate B117-M -4.503e+02
## ProductTravelMate P238-M -8.499e+02
## ProductTravelMate P259-G2 -9.935e+02
## ProductUX410UA-GV097T (i3-7100U/4GB/256GB/FHD/W10) 2.494e+01
## ProductUX410UA-GV350T (i5-8250U/8GB/256GB/FHD/W10) 8.902e+01
## ProductUX430UQ-GV209R (i7-7500U/8GB/256GB/GeForce 7.270e+01
## ProductUX510UX-CN269T (i7-7500U/8GB/256GB 7.620e+01
## ProductV110-15IAP (N3350/4GB/128GB/No 8.372e+02
## ProductV110-15IAP (N3350/4GB/1TB/No 8.584e+02
## ProductV110-15IKB (i5-7200U/4GB/128GB/W10) 6.304e+02
## ProductV110-15ISK (3855U/4GB/500GB/W10) 5.792e+02
## ProductV110-15ISK (i3-6006U/4GB/128GB/W10) 5.556e+02
## ProductV110-15ISK (i3-6006U/4GB/1TB/No 6.523e+02
## ProductV110-15ISK (i3-6006U/4GB/1TB/Radeon 7.162e+02
## ProductV110-15ISK (i3-6006U/4GB/500GB/W10) 4.521e+02
## ProductV110-15ISK (i5-6200U/4GB/128GB/W10) 6.518e+02
## ProductV110-15ISK (i5-6200U/4GB/500GB/No 6.985e+02
## ProductV110-15ISK (i5-6200U/4GB/500GB/W10) 5.535e+02
## ProductV131 (X5-Z8350/4GB/32GB/FHD/W10) 1.018e+02
## ProductV142 (X5-Z8350/2GB/32GB/W10) NA
## ProductV310-15IKB (i5-7200U/4GB/1TB/FHD/W10) 2.631e+02
## ProductV310-15IKB (i5-7200U/4GB/1TB/No 5.508e+02
## ProductV310-15IKB (i5-7200U/8GB/1TB 5.021e+02
## ProductV310-15IKB (i7-7500U/4GB/1TB/FHD/W10) 4.113e+02
## ProductV310-15ISK (i3-6006U/4GB/128GB/FHD/No 5.964e+02
## ProductV310-15ISK (i3-6006U/4GB/1TB/FHD/W10) 5.547e+02
## ProductV310-15ISK (i3-6006U/4GB/500GB/No 4.530e+02
## ProductV310-15ISK (i5-6200U/4GB/1TB/FHD/No 6.129e+02
## ProductV310-15ISK (i5-7200U/4GB/1TB/FHD/W10) 5.508e+02
## ProductV310-15ISK (i5-7200U/8GB/1TB 4.887e+02
## ProductV320-17ISK (i3-6006U/4GB/500GB/FHD/No 2.593e+02
## ProductV330-15IKB (i3-7130U/4GB/128GB/FHD/W10) 4.213e+02
## ProductV330-15IKB (i5-8250U/4GB/256GB/FHD/W10) 4.203e+02
## ProductV330-15IKB (i5-8250U/4GB/500GB/FHD/W10) 3.878e+02
## ProductV330-15IKB (i5-8250U/8GB/256GB/FHD/W10) 4.304e+02
## ProductV330-15IKB (i7-8550U/8GB/256GB/FHD/W10) 3.935e+02
## ProductV510-15IKB (i5-7200U/8GB/256GB/FHD/No 4.408e+02
## ProductVivoBook E12 8.048e+02
## ProductVivobook E200HA 1.653e+02
## ProductVivoBook E201NA 1.198e+02
## ProductVivoBook E403NA 5.139e+02
## ProductVivoBook Flip 4.773e+02
## ProductVivoBook L402NA 3.528e+02
## ProductVivobook Max -7.836e+02
## ProductVivoBook Max 2.095e+02
## ProductVivoBook Pro -2.102e+02
## ProductVivoBook S14 2.503e+02
## ProductVivoBook S15 5.492e+01
## ProductVivoBook X540YA-XX519T -4.647e+02
## ProductVivobook X541UV-DM1217T 1.539e+02
## ProductVostro 3559 -1.521e+03
## ProductVostro 3568 -1.437e+03
## ProductVostro 5370 -1.417e+03
## ProductVostro 5468 -1.461e+03
## ProductVostro 5471 -1.437e+03
## ProductVostro 5568 -1.479e+03
## ProductX505BP-BR019T (A9-9420/4GB/1TB/Radeon 7.760e+01
## ProductX540SA-RBPDN09 (N3710/4GB/1TB/W10) 3.584e+02
## ProductX540UA-DM186 (i3-6006U/4GB/1TB/FHD/Linux) 2.413e+02
## ProductX541NA (N3350/4GB/1TB/FHD/W10) 3.256e+02
## ProductX541NA (N3350/4GB/1TB/Linux) 4.542e+02
## ProductX541NA (N4200/4GB/1TB/W10) 1.211e+02
## ProductX541NA-GO020T (N3350/4GB/1TB/W10) 3.382e+02
## ProductX541NA-GO121 (N4200/4GB/1TB/Linux) 1.577e+02
## ProductX541NA-GO414T (N3350/8GB/1TB/W10) 1.872e+02
## ProductX541NA-PD1003Y (N4200/4GB/500GB/W10) 4.017e+02
## ProductX541UA-DM1897 (i3-6006U/4GB/256GB/FHD/Linux) 2.456e+02
## ProductX541UV-DM1439T (i3-7100U/6GB/256GB/GeForce 1.114e+02
## ProductX542UQ-DM117 (i3-7100U/8GB/1TB/GeForce 9.656e+00
## ProductX542UQ-GO005 (i5-7200U/8GB/1TB/GeForce 1.744e+02
## ProductX550VX-XX015D (i5-6300HQ/4GB/1TB/GeForce 1.194e+02
## ProductX553SA-XX021T (N3050/4GB/500GB/W10) 1.795e+02
## ProductX553SA-XX031T (N3050/4GB/500GB/W10) 1.810e+02
## ProductX555BP-XX180T (A9-9420/4GB/1TB/Radeon 1.659e+02
## ProductX555QG-DM242T (A10-9620P/4GB/1TB -7.786e+02
## ProductX556UJ-XO044T (i7-6500U/4GB/500GB/GeForce 2.411e+00
## ProductX705UV-BX074T (i3-6006U/4GB/1TB/GeForce 2.895e+01
## ProductX751NV-TY001 (N4200/4GB/1TB/GeForce -8.503e+01
## ProductX751NV-TY001T (N4200/4GB/1TB/GeForce -8.790e+01
## ProductX751SV-TY001T (N3710/4GB/1TB/GeForce -1.406e+02
## ProductXPS 13 -1.369e+03
## ProductXPS 15 -1.667e+03
## ProductYoga 11e -2.884e+02
## ProductYoga 500-14IBD 4.843e+02
## ProductYoga 500-14ISK 5.361e+02
## ProductYoga 500-15ISK 3.905e+02
## ProductYoga 510-15IKB 4.672e+02
## ProductYoga 520-14IKB 4.160e+02
## ProductYoga 700-11ISK -4.737e+02
## ProductYoga 720-13IKB 4.292e+02
## ProductYoga 720-15IKB 1.522e+02
## ProductYoga 730 4.593e+02
## ProductYoga 900-13ISK 3.114e+02
## ProductYoga 900S-12ISK -4.778e+02
## ProductYoga 910-13IKB 4.445e+02
## ProductYoga 920-13IKB 4.880e+02
## ProductYoga Book -5.487e+02
## ProductZbook 15 -1.390e+02
## ProductZBook 15 -3.600e+01
## ProductZBook 15u -1.433e+03
## ProductZbook 17 -1.004e+03
## ProductZBook 17 -2.085e+02
## ProductZBook Studio NA
## ProductZenbook 3 1.269e+02
## ProductZenBook 3 1.752e+02
## ProductZenbook Flip 1.656e+02
## ProductZenBook Flip 6.613e+01
## ProductZenBook Pro -7.733e+01
## ProductZenBook UX305CA-UBM1 -8.669e+02
## ProductZenBook UX310UA-FB485T 1.695e+02
## ProductZenBook UX310UA-WB71 5.242e+01
## ProductZenBook UX310UQ-GL026T 1.162e+02
## ProductZenbook UX330UA-AH5Q 6.433e+01
## ProductZenbook UX390UA 2.450e+02
## ProductZenbook UX410UA-GV027T 4.172e+01
## ProductZenBook UX410UA-GV183T 4.489e+01
## ProductZenbook UX430UA 7.672e+01
## ProductZenBook UX430UA 8.980e+01
## ProductZenBook UX430UN 1.268e+02
## ProductZenbook UX510UW-FI095T -2.618e+01
## ProductZenBook UX510UX-CN211T 2.451e+01
## ProductZenBook UX530UQ-PRO NA
## TypeNameGaming 2.550e-01
## TypeNameNetbook -6.493e+01
## TypeNameNotebook -1.807e+01
## TypeNameUltrabook -6.287e+00
## TypeNameWorkstation 1.765e+02
## Inches 2.722e+01
## ScreenResolution1440x900 -1.371e+02
## ScreenResolution1600x900 -3.307e+00
## ScreenResolution1920x1080 NA
## ScreenResolution2560x1440 6.772e+01
## ScreenResolution4K Ultra HD / Touchscreen 3840x2160 1.379e+02
## ScreenResolution4K Ultra HD 3840x2160 4.271e+01
## ScreenResolutionFull HD / Touchscreen 1920x1080 -4.337e+01
## ScreenResolutionFull HD 1920x1080 -1.369e+01
## ScreenResolutionIPS Panel 1366x768 6.452e+01
## ScreenResolutionIPS Panel 2560x1440 -5.036e+01
## ScreenResolutionIPS Panel 4K Ultra HD / Touchscreen 3840x2160 5.774e+01
## ScreenResolutionIPS Panel 4K Ultra HD 3840x2160 1.615e+02
## ScreenResolutionIPS Panel Full HD / Touchscreen 1920x1080 -2.989e+01
## ScreenResolutionIPS Panel Full HD 1366x768 -2.272e+00
## ScreenResolutionIPS Panel Full HD 1920x1080 1.909e+01
## ScreenResolutionIPS Panel Full HD 1920x1200 NA
## ScreenResolutionIPS Panel Full HD 2160x1440 NA
## ScreenResolutionIPS Panel Full HD 2560x1440 3.062e+02
## ScreenResolutionIPS Panel Quad HD+ / Touchscreen 3200x1800 2.736e+01
## ScreenResolutionIPS Panel Quad HD+ 2560x1440 -1.796e+02
## ScreenResolutionIPS Panel Quad HD+ 3200x1800 NA
## ScreenResolutionIPS Panel Retina Display 2304x1440 NA
## ScreenResolutionIPS Panel Retina Display 2560x1600 -3.353e+02
## ScreenResolutionIPS Panel Retina Display 2736x1824 NA
## ScreenResolutionIPS Panel Retina Display 2880x1800 NA
## ScreenResolutionIPS Panel Touchscreen / 4K Ultra HD 3840x2160 -3.524e+01
## ScreenResolutionIPS Panel Touchscreen 1366x768 -1.690e+01
## ScreenResolutionIPS Panel Touchscreen 1920x1200 NA
## ScreenResolutionIPS Panel Touchscreen 2400x1600 NA
## ScreenResolutionIPS Panel Touchscreen 2560x1440 -8.183e+01
## ScreenResolutionQuad HD+ / Touchscreen 3200x1800 2.901e+01
## ScreenResolutionQuad HD+ 3200x1800 -1.021e+02
## ScreenResolutionTouchscreen / 4K Ultra HD 3840x2160 1.080e+03
## ScreenResolutionTouchscreen / Full HD 1920x1080 1.366e+01
## ScreenResolutionTouchscreen / Quad HD+ 3200x1800 2.679e+01
## ScreenResolutionTouchscreen 1366x768 1.201e+01
## ScreenResolutionTouchscreen 2256x1504 NA
## ScreenResolutionTouchscreen 2400x1600 NA
## ScreenResolutionTouchscreen 2560x1440 7.190e+01
## CpuAMD A10-Series 9620P 2.5GHz -9.571e+02
## CpuAMD A10-Series A10-9620P 2.5GHz NA
## CpuAMD A12-Series 9700P 2.5GHz NA
## CpuAMD A12-Series 9720P 2.7GHz -9.914e+02
## CpuAMD A12-Series 9720P 3.6GHz NA
## CpuAMD A4-Series 7210 2.2GHz 1.290e+02
## CpuAMD A6-Series 7310 2GHz NA
## CpuAMD A6-Series 9220 2.5GHz -2.262e+02
## CpuAMD A6-Series 9220 2.9GHz 1.638e+02
## CpuAMD A6-Series A6-9220 2.5GHz NA
## CpuAMD A8-Series 7410 2.2GHz NA
## CpuAMD A9-Series 9410 2.9GHz NA
## CpuAMD A9-Series 9420 2.9GHz 3.393e+01
## CpuAMD A9-Series 9420 3GHz -8.452e+02
## CpuAMD A9-Series A9-9420 3GHz NA
## CpuAMD E-Series 6110 1.5GHz NA
## CpuAMD E-Series 7110 1.8GHz NA
## CpuAMD E-Series 9000 2.2GHz 2.728e+02
## CpuAMD E-Series 9000e 1.5GHz NA
## CpuAMD E-Series E2-6110 1.5GHz NA
## CpuAMD E-Series E2-9000 2.2GHz 1.880e+02
## CpuAMD E-Series E2-9000e 1.5GHz NA
## CpuAMD FX 8800P 2.1GHz NA
## CpuAMD FX 9830P 3GHz NA
## CpuAMD Ryzen 1600 3.2GHz -9.427e+02
## CpuAMD Ryzen 1700 3GHz -9.519e+02
## CpuIntel Atom x5-Z8300 1.44GHz NA
## CpuIntel Atom x5-Z8350 1.44GHz NA
## CpuIntel Atom X5-Z8350 1.44GHz NA
## CpuIntel Atom x5-Z8550 1.44GHz NA
## CpuIntel Atom Z8350 1.92GHz NA
## CpuIntel Celeron Dual Core 3205U 1.5GHz NA
## CpuIntel Celeron Dual Core 3855U 1.6GHz -6.296e+02
## CpuIntel Celeron Dual Core N3050 1.6GHz -7.863e+02
## CpuIntel Celeron Dual Core N3060 1.60GHz -6.644e+02
## CpuIntel Celeron Dual Core N3060 1.6GHz -6.776e+02
## CpuIntel Celeron Dual Core N3350 1.1GHz -7.491e+02
## CpuIntel Celeron Dual Core N3350 2.0GHz NA
## CpuIntel Celeron Dual Core N3350 2GHz -6.173e+02
## CpuIntel Celeron Quad Core N3160 1.6GHz NA
## CpuIntel Celeron Quad Core N3450 1.1GHz NA
## CpuIntel Celeron Quad Core N3710 1.6GHz NA
## CpuIntel Core i3 6006U 2.0GHz -8.877e+02
## CpuIntel Core i3 6006U 2.2GHz -7.972e+02
## CpuIntel Core i3 6006U 2GHz -9.320e+02
## CpuIntel Core i3 6100U 2.1GHz -8.136e+02
## CpuIntel Core i3 6100U 2.3GHz -9.849e+02
## CpuIntel Core i3 7100U 2.4GHz -9.782e+02
## CpuIntel Core i3 7130U 2.7GHz -1.003e+03
## CpuIntel Core i5 1.3GHz -1.078e+01
## CpuIntel Core i5 1.6GHz NA
## CpuIntel Core i5 1.8GHz NA
## CpuIntel Core i5 2.0GHz -1.290e+02
## CpuIntel Core i5 2.3GHz -3.534e+02
## CpuIntel Core i5 2.9GHz -1.133e+01
## CpuIntel Core i5 3.1GHz NA
## CpuIntel Core i5 6200U 2.3GHz -1.093e+03
## CpuIntel Core i5 6260U 1.8GHz -9.091e+02
## CpuIntel Core i5 6300HQ 2.3GHz -1.010e+03
## CpuIntel Core i5 6300U 2.4GHz -1.110e+03
## CpuIntel Core i5 6440HQ 2.6GHz NA
## CpuIntel Core i5 7200U 2.50GHz -1.095e+03
## CpuIntel Core i5 7200U 2.5GHz -1.082e+03
## CpuIntel Core i5 7200U 2.70GHz -1.124e+03
## CpuIntel Core i5 7200U 2.7GHz -1.166e+03
## CpuIntel Core i5 7300HQ 2.5GHz -1.046e+03
## CpuIntel Core i5 7300U 2.6GHz -1.103e+03
## CpuIntel Core i5 7440HQ 2.8GHz -1.073e+03
## CpuIntel Core i5 7500U 2.7GHz -1.109e+03
## CpuIntel Core i5 7Y54 1.2GHz -8.898e+02
## CpuIntel Core i5 7Y57 1.2GHz -1.143e+03
## CpuIntel Core i5 8250U 1.6GHz -1.062e+03
## CpuIntel Core i7 2.2GHz -2.233e+02
## CpuIntel Core i7 2.7GHz -1.830e+02
## CpuIntel Core i7 2.8GHz -1.831e+02
## CpuIntel Core i7 2.9GHz NA
## CpuIntel Core i7 6500U 2.50GHz -9.542e+02
## CpuIntel Core i7 6500U 2.5GHz -1.044e+03
## CpuIntel Core i7 6560U 2.2GHz -1.073e+03
## CpuIntel Core i7 6600U 2.6GHz -1.079e+03
## CpuIntel Core i7 6700HQ 2.6GHz -1.080e+03
## CpuIntel Core i7 6820HK 2.7GHz -1.927e+03
## CpuIntel Core i7 6820HQ 2.7GHz -1.162e+03
## CpuIntel Core i7 6920HQ 2.9GHz NA
## CpuIntel Core i7 7500U 2.5GHz NA
## CpuIntel Core i7 7500U 2.7GHz -1.107e+03
## CpuIntel Core i7 7560U 2.4GHz -1.262e+03
## CpuIntel Core i7 7600U 2.8GHz -1.072e+03
## CpuIntel Core i7 7660U 2.5GHz -9.921e+02
## CpuIntel Core i7 7700HQ 2.7GHz -1.183e+03
## CpuIntel Core i7 7700HQ 2.8GHz -1.042e+03
## CpuIntel Core i7 7820HK 2.9GHz -8.728e+02
## CpuIntel Core i7 7820HQ 2.9GHz -1.254e+03
## CpuIntel Core i7 7Y75 1.3GHz -9.542e+02
## CpuIntel Core i7 8550U 1.8GHz -1.087e+03
## CpuIntel Core i7 8650U 1.9GHz -1.237e+03
## CpuIntel Core M 1.1GHz 1.296e+02
## CpuIntel Core M 1.2GHz -2.442e+02
## CpuIntel Core M 6Y30 0.9GHz NA
## CpuIntel Core M 6Y54 1.1GHz NA
## CpuIntel Core M 6Y75 1.2GHz NA
## CpuIntel Core M 7Y30 1.0GHz NA
## CpuIntel Core M m3 1.2GHz NA
## CpuIntel Core M M3-6Y30 0.9GHz 1.867e+02
## CpuIntel Core M m3-7Y30 2.2GHz -9.862e+02
## CpuIntel Core M m7-6Y75 1.2GHz NA
## CpuIntel Core M M7-6Y75 1.2GHz NA
## CpuIntel Pentium Dual Core 4405U 2.1GHz -6.465e+02
## CpuIntel Pentium Dual Core 4405Y 1.5GHz NA
## CpuIntel Pentium Dual Core N4200 1.1GHz NA
## CpuIntel Pentium Quad Core N3700 1.6GHz -9.159e+02
## CpuIntel Pentium Quad Core N3710 1.6GHz -7.699e+02
## CpuIntel Pentium Quad Core N4200 1.1GHz -7.526e+02
## CpuIntel Xeon E3-1505M V6 3GHz -1.309e+03
## CpuIntel Xeon E3-1535M v5 2.9GHz NA
## CpuIntel Xeon E3-1535M v6 3.1GHz NA
## CpuSamsung Cortex A72&A53 2.0GHz NA
## Ram 3.559e+00
## Memory1.0TB Hybrid -2.250e+02
## Memory128GB Flash Storage -3.049e+02
## Memory128GB HDD NA
## Memory128GB SSD -2.437e+02
## Memory128GB SSD + 1TB HDD -2.500e+02
## Memory128GB SSD + 2TB HDD -2.730e+02
## Memory16GB Flash Storage -3.945e+02
## Memory16GB SSD NA
## Memory180GB SSD -2.590e+02
## Memory1TB HDD -2.134e+02
## Memory1TB HDD + 1TB HDD NA
## Memory1TB SSD 1.706e+01
## Memory1TB SSD + 1TB HDD 1.842e+02
## Memory240GB SSD NA
## Memory256GB Flash Storage -3.711e+02
## Memory256GB SSD -2.511e+02
## Memory256GB SSD + 1.0TB Hybrid 8.467e+02
## Memory256GB SSD + 1TB HDD -2.718e+02
## Memory256GB SSD + 256GB SSD -3.774e+01
## Memory256GB SSD + 2TB HDD -2.866e+02
## Memory256GB SSD + 500GB HDD -4.137e+00
## Memory2TB HDD -2.697e+02
## Memory32GB Flash Storage -1.933e+02
## Memory32GB HDD NA
## Memory32GB SSD NA
## Memory500GB HDD -1.925e+02
## Memory508GB Hybrid -2.536e+02
## Memory512GB Flash Storage NA
## Memory512GB SSD -1.991e+02
## Memory512GB SSD + 1.0TB Hybrid 1.090e+03
## Memory512GB SSD + 1TB HDD -2.486e+02
## Memory512GB SSD + 256GB SSD NA
## Memory512GB SSD + 2TB HDD -1.977e+02
## Memory512GB SSD + 512GB SSD -1.341e+02
## Memory64GB Flash Storage NA
## Memory64GB Flash Storage + 1TB HDD NA
## Memory64GB SSD NA
## Memory8GB SSD NA
## GpuAMD FirePro W4190M 1.985e+02
## GpuAMD FirePro W5130M NA
## GpuAMD FirePro W6150M -7.306e+02
## GpuAMD R17M-M1-70 NA
## GpuAMD R4 Graphics 3.153e+02
## GpuAMD Radeon 520 4.597e+01
## GpuAMD Radeon 530 7.048e+01
## GpuAMD Radeon 540 9.416e+01
## GpuAMD Radeon Pro 455 NA
## GpuAMD Radeon Pro 555 NA
## GpuAMD Radeon Pro 560 NA
## GpuAMD Radeon R2 NA
## GpuAMD Radeon R2 Graphics NA
## GpuAMD Radeon R3 NA
## GpuAMD Radeon R4 NA
## GpuAMD Radeon R4 Graphics NA
## GpuAMD Radeon R5 NA
## GpuAMD Radeon R5 430 NA
## GpuAMD Radeon R5 520 NA
## GpuAMD Radeon R5 M315 8.386e+01
## GpuAMD Radeon R5 M330 NA
## GpuAMD Radeon R5 M420 1.162e+02
## GpuAMD Radeon R5 M420X 3.233e+01
## GpuAMD Radeon R5 M430 1.770e+01
## GpuAMD Radeon R7 3.213e+02
## GpuAMD Radeon R7 Graphics NA
## GpuAMD Radeon R7 M360 NA
## GpuAMD Radeon R7 M365X 2.337e+01
## GpuAMD Radeon R7 M440 1.691e+02
## GpuAMD Radeon R7 M445 9.919e+01
## GpuAMD Radeon R7 M460 NA
## GpuAMD Radeon R7 M465 9.979e+01
## GpuAMD Radeon R9 M385 NA
## GpuAMD Radeon RX 540 NA
## GpuAMD Radeon RX 550 8.163e+01
## GpuAMD Radeon RX 560 NA
## GpuAMD Radeon RX 580 NA
## GpuARM Mali T860 MP4 NA
## GpuIntel Graphics 620 5.134e+01
## GpuIntel HD Graphics 9.427e+01
## GpuIntel HD Graphics 400 1.205e+02
## GpuIntel HD Graphics 405 4.022e+01
## GpuIntel HD Graphics 500 NA
## GpuIntel HD Graphics 505 NA
## GpuIntel HD Graphics 510 NA
## GpuIntel HD Graphics 515 8.912e+00
## GpuIntel HD Graphics 520 1.028e+02
## GpuIntel HD Graphics 530 -1.589e+01
## GpuIntel HD Graphics 5300 NA
## GpuIntel HD Graphics 540 NA
## GpuIntel HD Graphics 6000 NA
## GpuIntel HD Graphics 615 NA
## GpuIntel HD Graphics 620 1.180e+02
## GpuIntel HD Graphics 620 1.374e+02
## GpuIntel HD Graphics 630 2.526e+02
## GpuIntel Iris Graphics 540 NA
## GpuIntel Iris Graphics 550 NA
## GpuIntel Iris Plus Graphics 640 2.244e+02
## GpuIntel Iris Plus Graphics 650 NA
## GpuIntel Iris Pro Graphics NA
## GpuIntel UHD Graphics 620 8.224e+01
## GpuNvidia GeForce 150MX 2.543e+02
## GpuNvidia GeForce 920 1.010e+02
## GpuNvidia GeForce 920M 1.075e+02
## GpuNvidia GeForce 920MX 8.048e+01
## GpuNvidia GeForce 920MX 2.314e+01
## GpuNvidia GeForce 930M -4.521e+00
## GpuNvidia GeForce 930MX 1.179e+02
## GpuNvidia GeForce 930MX 7.512e+01
## GpuNvidia GeForce 940M NA
## GpuNvidia GeForce 940MX 8.169e+01
## GpuNvidia GeForce 960M 5.279e+02
## GpuNvidia GeForce GT 940MX 4.482e+01
## GpuNvidia GeForce GTX 1050 2.639e+02
## GpuNvidia GeForce GTX 1050 Ti 2.491e+02
## GpuNvidia GeForce GTX 1050M 2.641e+02
## GpuNvidia GeForce GTX 1050Ti 2.175e+02
## GpuNvidia GeForce GTX 1060 2.355e+02
## GpuNvidia GeForce GTX 1070 5.174e+02
## GpuNvidia GeForce GTX 1070M 4.903e+02
## GpuNvidia GeForce GTX 1080 1.489e+03
## GpuNvidia GeForce GTX 930MX NA
## GpuNvidia GeForce GTX 940M 1.004e+02
## GpuNvidia GeForce GTX 940MX 8.936e+01
## GpuNvidia GeForce GTX 950M NA
## GpuNvidia GeForce GTX 960 -9.906e+01
## GpuNvidia GeForce GTX 960<U+039C> -1.419e+01
## GpuNvidia GeForce GTX 960M NA
## GpuNvidia GeForce GTX 965M NA
## GpuNvidia GeForce GTX 970M NA
## GpuNvidia GeForce GTX 980 NA
## GpuNvidia GeForce GTX 980M NA
## GpuNvidia GeForce GTX1050 Ti NA
## GpuNvidia GeForce GTX1060 NA
## GpuNvidia GeForce GTX1080 NA
## GpuNvidia GeForce MX130 -8.283e+01
## GpuNvidia GeForce MX150 NA
## GpuNvidia GTX 980 SLI NA
## GpuNvidia Quadro 3000M NA
## GpuNvidia Quadro M1000M -1.275e+03
## GpuNvidia Quadro M1200 -1.226e+03
## GpuNvidia Quadro M2000M NA
## GpuNvidia Quadro M2200 -1.055e+03
## GpuNvidia Quadro M2200M NA
## GpuNvidia Quadro M3000M NA
## GpuNvidia Quadro M500M NA
## GpuNvidia Quadro M520M NA
## GpuNvidia Quadro M620 NA
## GpuNvidia Quadro M620M NA
## OpSysChrome OS NA
## OpSysLinux -1.440e+02
## OpSysMac OS X NA
## OpSysmacOS NA
## OpSysNo OS -1.269e+02
## OpSysWindows 10 -1.943e+02
## OpSysWindows 10 S NA
## OpSysWindows 7 -1.445e+02
## Weight 5.724e+01
## Frequenza NA
## Risoluzione1440x900 NA
## Risoluzione1600x900 NA
## Risoluzione1920x1080 NA
## Risoluzione1920x1200 NA
## Risoluzione2160x1440 NA
## Risoluzione2256x1504 NA
## Risoluzione2304x1440 NA
## Risoluzione2400x1600 NA
## Risoluzione2560x1440 NA
## Risoluzione2560x1600 NA
## Risoluzione2736x1824 NA
## Risoluzione2880x1800 NA
## Risoluzione3200x1800 NA
## Risoluzione3840x2160 NA
## Pixel NA
## SolidStateDiskTrue NA
## LogPrice 1.158e+03
## Std. Error
## (Intercept) 6.070e+02
## X 1.235e-02
## CompanyApple 5.943e+02
## CompanyAsus 4.664e+02
## CompanyChuwi 5.479e+02
## CompanyDell 2.539e+02
## CompanyFujitsu 4.674e+02
## CompanyGoogle 4.688e+02
## CompanyHP 2.544e+02
## CompanyHuawei 4.651e+02
## CompanyLenovo 5.982e+02
## CompanyLG 4.701e+02
## CompanyMediacom 5.278e+02
## CompanyMicrosoft 4.590e+02
## CompanyMSI 4.063e+02
## CompanyRazer 6.111e+02
## CompanySamsung 3.833e+02
## CompanyToshiba 4.664e+02
## CompanyVero 5.549e+02
## CompanyXiaomi 4.552e+02
## Product14-am079na (N3710/8GB/2TB/W10) 3.478e+02
## Product15-AC110nv (i7-6500U/6GB/1TB/Radeon 3.228e+02
## Product15-AY023na (N3710/8GB/2TB/W10) 3.464e+02
## Product15-ay047nv (i3-6006U/6GB/1TB/Radeon 3.427e+02
## Product15-BA015wm (E2-7110/4GB/500GB/W10) 4.921e+02
## Product15-ba043na (A12-9700P/8GB/2TB/W10) 4.916e+02
## Product15-bs002nv (i3-6006U/4GB/128GB/FHD/W10) 3.412e+02
## Product15-bs005nv (i3-6006U/4GB/1TB 3.478e+02
## Product15-bs011nv (i7-7500U/4GB/500GB/Radeon 3.473e+02
## Product15-bs012nv (i7-7500U/8GB/1TB/Radeon 3.488e+02
## Product15-bs015dx (i5-7200U/8GB/1TB/W10) 3.448e+02
## Product15-bs017nv (i7-7500U/8GB/256GB/Radeon 3.483e+02
## Product15-bs018nq (i3-6006U/4GB/500GB/FHD/No 3.429e+02
## Product15-bs023nv (i3-6006U/4GB/1TB/FHD/W10) 3.420e+02
## Product15-bs024nv (i5-7200U/8GB/128GB/W10) 3.404e+02
## Product15-bs025nv (i5-7200U/8GB/256GB/W10) 3.407e+02
## Product15-BS026nv (i5-7200U/8GB/256GB/Radeon 3.469e+02
## Product15-BS028nv (i3-6006U/4GB/1TB/Radeon 3.464e+02
## Product15-bs053od (i7-7500U/6GB/1TB/W10) 3.405e+02
## Product15-bs078cl (i7-7500U/8GB/2TB/W10) 3.412e+02
## Product15-BS078nr (i7-7500U/8GB/1TB/W10) 3.406e+02
## Product15-BS101nv (i7-8550U/8GB/256GB/FHD/W10) 3.456e+02
## Product15-BS103nv (i5-8250U/6GB/256GB/Radeon 3.504e+02
## Product15-bs190od (i5-8250U/4GB/1TB/W10) 3.449e+02
## Product15-bw000nv (E2-9000e/4GB/500GB/Radeon 4.920e+02
## Product15-bw002nv (A6-9220/4GB/256GB/Radeon 5.109e+02
## Product15-bw003nv (A9-Series-9420/4GB/256GB/FHD/W10) 3.445e+02
## Product15-BW004nv (A9-9420/4GB/256GB/Radeon 3.752e+02
## Product15-bw007nv (A10-9620P/6GB/128GB/Radeon 5.089e+02
## Product15-bw009nv (A12-9720P/6GB/1TB/Radeon 3.693e+02
## Product15-bw011nv (A6-9220/4GB/1TB/FHD/W10) 5.006e+02
## Product15-BW037na (A9-9420/4GB/1TB/Radeon 3.751e+02
## Product15-BW091ND (A9-9420/6GB/1TB 5.122e+02
## Product15-BW094nd (A6-9220/8GB/128GB/W10) 4.913e+02
## Product15-cb003na (i5-7300HQ/8GB/1TB 2.411e+02
## Product15-cd005nv (A9-9420/6GB/256GB/Radeon 5.086e+02
## Product15-ra044nv (N3060/4GB/500GB/W10) 3.435e+02
## Product15-rb013nv (E2-9000e/4GB/500GB/W10) 4.921e+02
## Product17-ak001nv (A6-9220/4GB/500GB/Radeon 5.207e+02
## Product17-ak002nv (A10-9620P/6GB/2TB/Radeon 3.691e+02
## Product17-AK091ND (A9-9420/8GB/1TB/W10) 3.416e+02
## Product17-bs000nv I3 3.264e+02
## Product17-bs001nv (i5-7200U/6GB/2TB/Radeon 3.484e+02
## Product17-BS037cl (i3-6006U/8GB/1TB/W10) 3.380e+02
## Product17-BS092ND (i3-6006U/8GB/256GB/W10) 3.371e+02
## Product17-X047na (i3-6006U/8GB/1TB/W10) 3.381e+02
## Product17-Y002nv (A10-9600P/6GB/2TB/Radeon 5.207e+02
## Product250 G4 3.417e+02
## Product250 G5 3.355e+02
## Product250 G6 3.330e+02
## Product255 G6 4.925e+02
## Product320-15ISK (i3-6006U/4GB/1TB/GeForce 2.530e+02
## ProductA541NA-GO342 (N3350/4GB/500GB/Linux) 1.559e+02
## ProductA715-71G-59DH (i5-7300HQ/8GB/1TB/GeForce 3.855e+02
## ProductAlienware 15 2.674e+02
## ProductAlienware 17 2.711e+02
## ProductAspire 1 5.286e+02
## ProductAspire 3 4.627e+02
## ProductAspire 5 4.566e+02
## ProductAspire 7 3.764e+02
## ProductAspire A315-31 4.724e+02
## ProductAspire A315-51 4.637e+02
## ProductAspire A515-51G 4.589e+02
## ProductAspire A515-51G-32MX 4.664e+02
## ProductAspire A515-51G-37JS 4.659e+02
## ProductAspire A515-51G-59QF 4.581e+02
## ProductAspire A517-51G 4.549e+02
## ProductAspire A715-71G 3.821e+02
## ProductAspire E5-475 4.693e+02
## ProductAspire E5-575 4.649e+02
## ProductAspire E5-576G 4.612e+02
## ProductAspire E5-774G 4.657e+02
## ProductAspire ES1-523 5.962e+02
## ProductAspire ES1-531 4.614e+02
## ProductAspire ES1-533 4.747e+02
## ProductAspire ES1-572 4.639e+02
## ProductAspire F5-573G 4.577e+02
## ProductAspire F5-573G-510L 4.587e+02
## ProductAspire R7 4.684e+02
## ProductAspire VX5-591G 3.872e+02
## ProductB51-80 (i5-6200U/8GB/1008GB/Radeon 2.639e+02
## ProductB51-80 (i5-6200U/8GB/1TB/Radeon 2.530e+02
## ProductB51-80 (i7-6500U/4GB/1008GB/FHD/W7) 2.581e+02
## ProductB51-80 (i7-6500U/8GB/1008GB/Radeon 2.648e+02
## ProductBlade Pro 3.825e+02
## ProductBlade Stealth NA
## ProductC740-C9QX (3205U/2GB/32GB/Chrome 5.484e+02
## ProductCB5-132T-C9KK (N3160/4GB/32GB/Chrome 5.602e+02
## ProductChromebook 11 3.653e+02
## ProductChromebook 13 4.828e+02
## ProductChromebook 14 3.707e+02
## ProductChromebook 15 5.439e+02
## ProductChromebook 3 2.666e+02
## ProductChromebook C202SA 1.758e+02
## ProductChromebook C731-C78G 3.800e+02
## ProductChromebook C738T-C2EJ 4.008e+02
## ProductChromebook C910-C2ST 5.434e+02
## ProductChromebook CB5-571-C1DZ 6.513e+02
## ProductChromebook Flip 2.895e+02
## ProductChromebook N23 3.298e+02
## ProductChromebook Plus 3.876e+02
## ProductChromebook X360 3.515e+02
## ProductE402WA-GA007T (E2-6110/4GB/64GB/W10 2.785e+02
## ProductE402WA-GA010T (E2-6110/2GB/32GB/W10) 2.801e+02
## ProductE5 774G 4.642e+02
## ProductEliteBook 1030 4.971e+02
## ProductElitebook 1040 3.384e+02
## ProductEliteBook 1040 3.326e+02
## ProductElitebook 820 3.358e+02
## ProductEliteBook 820 3.343e+02
## ProductElitebook 840 3.350e+02
## ProductEliteBook 840 3.316e+02
## ProductElitebook 850 3.346e+02
## ProductEliteBook 850 3.311e+02
## ProductElitebook Folio 4.698e+02
## ProductEliteBook Folio 4.933e+02
## ProductEliteBook x360 3.372e+02
## ProductENVY - 3.396e+02
## ProductEnvy 13-AB002nv 3.393e+02
## ProductEnvy 13-AB020nr 3.407e+02
## ProductEnvy 13-AB077cl 3.419e+02
## ProductEnvy 13-AD007nv 3.398e+02
## ProductEnvy 13-ad009n 3.269e+02
## ProductEnvy 17-U275cl 3.312e+02
## ProductEnvy x360 3.449e+02
## ProductES1-523-84K7 (A8-7410/8GB/256GB/FHD/W10) 5.976e+02
## ProductExtensa EX2540 4.678e+02
## ProductExtensa EX2540-58KR 4.675e+02
## ProductF756UX-T4201D (i7-7500U/8GB/128GB 1.261e+02
## ProductFlex 5 2.527e+02
## ProductFlexBook Edge 2.631e+02
## ProductFX502VM-AS73 (i7-7700HQ/16GB/1TB 2.249e+02
## ProductFX502VM-DM105T (i7-6700HQ/8GB/1TB/GeForce 2.760e+02
## ProductFX502VM-DM560T (i7-7700HQ/8GB/1TB 1.862e+02
## ProductFX503VD-E4022T (i7-7700HQ/8GB/1TB/GeForce 2.389e+02
## ProductFX503VM-E4007T (i7-7700HQ/16GB/1TB 2.339e+02
## ProductFX550IK-DM018T (FX-9830P/8GB/1TB/Radeon 2.538e+02
## ProductFX553VD-DM627T (i5-7300HQ/8GB/1TB 2.319e+02
## ProductFX553VD-FY647T (i7-7700HQ/8GB/256GB/GeForce 2.400e+02
## ProductFX753VD-GC007T (i7-7700HQ/8GB/1TB 2.400e+02
## ProductFX753VD-GC071T (i7-7700HQ/8GB/1TB/GeForce 2.401e+02
## ProductFX753VD-GC086T (i5-7300HQ/8GB/1TB 2.387e+02
## ProductFX753VD-GC461T (i7-7700HQ/16GB/1TB 2.412e+02
## ProductFX753VE-GC093 (i7-7700HQ/12GB/1TB/GeForce 2.386e+02
## ProductFX753VE-GC155T (i7-7700HQ/16GB/1TB 1.882e+02
## ProductG701VO-IH74K (i7-6820HK/32GB/2x 2.752e+02
## ProductG752VY-GC162T (i7-6700HQ/16GB/1TB 2.186e+02
## ProductGE62 Apache 2.120e+02
## ProductGE63VR 7RE 1.759e+02
## ProductGE63VR 7RF 1.823e+02
## ProductGE72 Apache 2.148e+02
## ProductGE72MVR 7RG 1.767e+02
## ProductGE72VR 6RF 1.774e+02
## ProductGE72VR Apache 1.768e+02
## ProductGE73VR 7RE 1.781e+02
## ProductGE73VR 7RF 1.842e+02
## ProductGL553VE-FY082T (i7-7700HQ/8GB/1TB 2.365e+02
## ProductGL62 6QF 2.117e+02
## ProductGL62M (i5-7300HQ/8GB/1TB 1.734e+02
## ProductGL62M 7RD 1.644e+02
## ProductGL62M 7RDX 1.710e+02
## ProductGL62M 7REX 1.747e+02
## ProductGL72M 7RDX 1.657e+02
## ProductGL72M 7REX 1.689e+02
## ProductGP62 7RDX 1.726e+02
## ProductGP62M 7RDX 1.711e+02
## ProductGP62M 7REX 1.761e+02
## ProductGP62M Leopard 1.711e+02
## ProductGP62MVR 6RF 1.932e+02
## ProductGP72M 7REX 1.771e+02
## ProductGP72MVR 7RFX 1.774e+02
## ProductGP72VR Leopard 1.772e+02
## ProductGram 14Z970 1.154e+02
## ProductGram 15Z970 1.143e+02
## ProductGram 15Z975 NA
## ProductGS40 Phantom 2.114e+02
## ProductGS43VR 7RE 1.773e+02
## ProductGS60 Ghost 2.146e+02
## ProductGS63VR 6RF 1.930e+02
## ProductGS63VR 7RF 1.706e+02
## ProductGS63VR 7RG 1.851e+02
## ProductGS70 Stealth 2.138e+02
## ProductGS73VR 7RF 1.775e+02
## ProductGS73VR 7RG 1.873e+02
## ProductGS73VR Stealth 1.914e+02
## ProductGT62VR 6RD 1.936e+02
## ProductGT62VR 7RE 1.832e+02
## ProductGT72S Dominator 2.439e+02
## ProductGT72VR Dominator 1.877e+02
## ProductGT73EVR 7RE 1.942e+02
## ProductGT73VR Titan 1.999e+02
## ProductGT80S 6QE 2.738e+02
## ProductGT80S 6QF-074US 3.701e+02
## ProductGV62 7RD-1686NL 1.721e+02
## ProductGV62M 7RD 1.718e+02
## ProductIdeaPad 100S-14IBR 3.214e+02
## ProductIdeaPad 110-15IBR 1.916e+02
## ProductIdeaPad 110-15ISK 2.375e+02
## ProductIdeaPad 110-17ACL 1.278e+02
## ProductIdeaPad 120S-14IAP 3.251e+02
## ProductIdeaPad 300-17ISK 3.225e+02
## ProductIdeaPad 310-15ABR 1.070e+02
## ProductIdeaPad 310-15IKB 2.375e+02
## ProductIdeapad 310-15ISK 2.458e+02
## ProductIdeaPad 310-15ISK 2.378e+02
## ProductIdeaPad 320-14IAP 2.629e+02
## ProductIdeaPad 320-15ABR 1.327e+02
## ProductIdeaPad 320-15AST 1.536e+02
## ProductIdeapad 320-15IAP 2.633e+02
## ProductIdeaPad 320-15IAP 2.490e+02
## ProductIdeaPad 320-15IKB 2.366e+02
## ProductIdeapad 320-15IKBN 2.439e+02
## ProductIdeaPad 320-15IKBN 2.347e+02
## ProductIdeapad 320-15IKBR 2.502e+02
## ProductIdeapad 320-15ISK 2.537e+02
## ProductIdeaPad 320-15ISK 2.351e+02
## ProductIdeaPad 320-17IKB 2.464e+02
## ProductIdeaPad 320-17IKBR 2.468e+02
## ProductIdeaPad 320-17ISK 2.553e+02
## ProductIdeaPad 320s-14IKB 2.563e+02
## ProductIdeaPad 500-15ISK 2.649e+02
## ProductIdeaPad 510-15IKB 2.396e+02
## ProductIdeaPad 510-15ISK 2.493e+02
## ProductIdeapad 510S-13IKB 2.493e+02
## ProductIdeaPad 510s-14IKB 2.543e+02
## ProductIdeapad 520-15IKBR 2.451e+02
## ProductIdeaPad 520s-14IKB 2.447e+02
## ProductIdeaPad 520S-14IKB 2.569e+02
## ProductIdeapad 700-15ISK 3.300e+02
## ProductIdeaPad 720S-13IKB 2.507e+02
## ProductIdeaPad 720S-14IKB 2.502e+02
## ProductIdeaPad Y700-15ACZ 1.308e+02
## ProductIdeaPad Y700-15ISK 3.106e+02
## ProductIdeaPad Y900-17ISK 3.291e+02
## ProductIdeaPad Y910-17ISK 3.882e+02
## ProductInspiron 3168 3.713e+02
## ProductInspiron 3179 5.097e+02
## ProductInspiron 3552 3.653e+02
## ProductInspiron 3567 3.498e+02
## ProductInspiron 3576 3.595e+02
## ProductInspiron 5368 3.549e+02
## ProductInspiron 5370 3.605e+02
## ProductInspiron 5378 3.559e+02
## ProductInspiron 5379 3.540e+02
## ProductInspiron 5567 3.564e+02
## ProductInspiron 5568 3.616e+02
## ProductInspiron 5570 3.575e+02
## ProductInspiron 5577 2.590e+02
## ProductInspiron 5578 3.547e+02
## ProductInspiron 5579 3.531e+02
## ProductInspiron 5767 3.654e+02
## ProductInspiron 5770 3.613e+02
## ProductInspiron 7378 3.561e+02
## ProductInspiron 7559 2.991e+02
## ProductInspiron 7560 3.540e+02
## ProductInspiron 7567 2.594e+02
## ProductInspiron 7570 3.511e+02
## ProductInspiron 7577 2.589e+02
## ProductInspiron 7579 3.549e+02
## ProductInspiron 7773 2.751e+02
## ProductInspiron 7779 3.580e+02
## ProductInsprion 5767 3.597e+02
## ProductK146 (N3350/4GB/32GB/W10) 2.895e+02
## ProductK147 (N3350/4GB/32GB/FHD/W10) 2.920e+02
## ProductK556UR-DM621T (i7-7500U/8GB/256GB/GeForce 1.253e+02
## ProductK756UX-T4340T (i5-7200U/8GB/500GB 1.514e+02
## ProductL403NA-GA013TS (N3350/4GB/32GB/W10) 2.292e+02
## ProductL502NA-GO052T (N3350/4GB/128GB/W10) 1.526e+02
## ProductLapBook 12.3 1.408e+02
## ProductLapbook 15,6 1.042e+02
## ProductLapBook 15.6" NA
## ProductLaptop MSI 2.707e+02
## ProductLatitude 3180 3.725e+02
## ProductLatitude 3380 3.537e+02
## ProductLatitude 3480 3.521e+02
## ProductLatitude 3570 3.576e+02
## ProductLatitude 3580 3.496e+02
## ProductLatitude 5289 3.603e+02
## ProductLatitude 5480 3.467e+02
## ProductLatitude 5490 3.563e+02
## ProductLatitude 5580 3.471e+02
## ProductLatitude 5590 3.545e+02
## ProductLatitude 7280 3.543e+02
## ProductLatitude 7390 3.581e+02
## ProductLatitude 7480 3.500e+02
## ProductLatitude E5270 3.537e+02
## ProductLatitude E5470 3.591e+02
## ProductLatitude E5570 3.498e+02
## ProductLatitude E7270 3.587e+02
## ProductLatitude E7470 3.523e+02
## ProductLegion Y520-15IKBN 3.733e+02
## ProductLegion Y720-15IKB 3.731e+02
## ProductLenovo IdeaPad 3.376e+02
## ProductLeopard GP72M 1.764e+02
## ProductLifeBook A556 1.068e+02
## ProductLifebook A557 1.047e+02
## ProductLifeBook A557 NA
## ProductMacBook 12" 1.163e+02
## ProductMacbook Air 1.549e+02
## ProductMacBook Air 1.362e+02
## ProductMacBook Pro NA
## ProductMateBook X NA
## ProductMi Notebook NA
## ProductN23 (N3060/4GB/128GB/W10) 2.620e+02
## ProductN42-20 Chromebook 2.118e+02
## ProductNitro 5 3.853e+02
## ProductNitro AN515-51 3.851e+02
## ProductNoteb Pav 3.372e+02
## ProductNotebook 9 2.227e+02
## ProductNotebook Odyssey NA
## ProductOmen - 2.571e+02
## ProductOmen 15-AX205na 2.455e+02
## ProductOmen 15-ce006nv 2.466e+02
## ProductOmen 15-ce007nv 2.472e+02
## ProductOmen 17-an006nv 2.546e+02
## ProductOmen 17-AN010nv 2.545e+02
## ProductOmen 17-an012dx 3.095e+02
## ProductOmen 17-W006na 2.848e+02
## ProductOmen 17-w207nv 2.569e+02
## ProductOmen 17-w212nv 2.496e+02
## ProductOmen 17-W295 2.514e+02
## ProductPavilion 14-BK001nv 3.386e+02
## ProductPavilion 15-AW003nv 5.189e+02
## ProductPavilion 15-BC000nv 2.648e+02
## ProductPavilion 15-cb003nv 2.485e+02
## ProductPavilion 15-CK000nv 3.449e+02
## ProductPavilion Power 2.406e+02
## ProductPavilion x360 3.466e+02
## ProductPavilion X360 3.430e+02
## ProductPixelbook (Core NA
## ProductPL60 7RD NA
## ProductPortege A30-C-1CZ 1.128e+02
## ProductPortege X20W-D-10V 1.190e+02
## ProductPortege X30-D-10J 1.106e+02
## ProductPortege X30-D-10K 1.139e+02
## ProductPortege X30-D-10L 1.206e+02
## ProductPortege X30-D-10V 1.114e+02
## ProductPortege X30-D-10X 1.129e+02
## ProductPortege Z30-C-16H 1.147e+02
## ProductPortege Z30-C-16J 1.129e+02
## ProductPortégé Z30-C-16K 1.148e+02
## ProductPortege Z30-C-16L 1.145e+02
## ProductPortege Z30-C-16P 1.155e+02
## ProductPortege Z30-C-16Z 1.166e+02
## ProductPortégé Z30-C-188 1.148e+02
## ProductPortege Z30-C-1CV 1.158e+02
## ProductPortege Z30-C-1CW 1.142e+02
## ProductPortege Z30T-C-133 1.180e+02
## ProductPrecision 3510 3.629e+02
## ProductPrecision 3520 2.147e+02
## ProductPrecision 5520 2.156e+02
## ProductPrecision 7520 3.065e+02
## ProductPrecision 7720 2.983e+02
## ProductPrecision M5520 1.992e+02
## ProductPredator 17 3.663e+02
## ProductPredator G9-793 3.908e+02
## ProductPro P2540UA-AB51 1.135e+02
## ProductPro P2540UA-XO0192R 1.151e+02
## ProductPro P2540UA-XO0198T 1.164e+02
## ProductPro P2540UA-XS51 1.133e+02
## ProductProbook 430 3.360e+02
## ProductProBook 430 3.337e+02
## ProductProbook 440 3.340e+02
## ProductProBook 440 3.337e+02
## ProductProbook 450 3.345e+02
## ProductProBook 450 3.322e+02
## ProductProbook 470 3.385e+02
## ProductProBook 470 3.351e+02
## ProductProbook 640 3.359e+02
## ProductProBook 640 3.343e+02
## ProductProbook 650 3.355e+02
## ProductProBook 650 3.347e+02
## ProductProBook x360 3.623e+02
## ProductQ304UA-BHI5T11 (i5-7200U/6GB/1TB/FHD/W10) 1.232e+02
## ProductQ524UQ-BHI7T15 (i7-7500U/12GB/2TB/GeForce 1.214e+02
## ProductQ534UX-BHI7T19 (i7-7500U/16GB/2TB 1.568e+02
## ProductR417NA-RS01 (N3350/4GB/32GB/W10) 2.287e+02
## ProductR558UA-DM966T (i5-7200U/8GB/128GB/FHD/W10) 1.894e+02
## ProductROG G701VI 2.518e+02
## ProductRog G701VIK-BA060T 2.455e+02
## ProductROG G701VO 2.311e+02
## ProductROG G703VI-E5062T 2.562e+02
## ProductRog G752VL-GC088D 2.169e+02
## ProductRog G752VL-UH71T 2.163e+02
## ProductRog G752VS-BA171T 2.814e+02
## ProductROG G752VSK-GC493T 1.990e+02
## ProductRog G752VT-GC073T 2.155e+02
## ProductRog G752VY-GC229T 2.251e+02
## ProductRog GL502VM-DS74 2.313e+02
## ProductRog GL502VS 2.725e+02
## ProductRog GL552VW-CN470T 2.076e+02
## ProductRog GL552VW-DM201T 2.096e+02
## ProductRog GL553VE-DS74 2.383e+02
## ProductROG GL553VE-FY022 2.400e+02
## ProductRog GL553VE-FY052T 2.405e+02
## ProductRog GL702VM-GC017T 2.814e+02
## ProductRog GL702VM-GC354T 2.384e+02
## ProductRog GL702VS-BA023T 2.320e+02
## ProductRog GL702VS-GC095T 2.321e+02
## ProductROG GL703VD-GC028T 2.414e+02
## ProductRog GL752VW-T4308T 2.111e+02
## ProductRog GL753VD-GC042T 2.404e+02
## ProductRog GL753VD-GC082T 2.357e+02
## ProductRog GL753VE-DS74 2.391e+02
## ProductRog GL753VE-GC070T 2.391e+02
## ProductRog Strix 2.255e+02
## ProductROG Strix 2.247e+02
## ProductROG Zephyrus 1.860e+02
## ProductSatellite Pro 8.023e+01
## ProductSmartBook 130 1.364e+02
## ProductSmartBook 140 1.374e+02
## ProductSmartBook 141 1.215e+02
## ProductSmartbook 142 1.561e+02
## ProductSmartBook Edge NA
## ProductSP315-51 (i7-7500U/12GB/1TB/FHD/W10) 4.697e+02
## ProductSP714-51 (i7-7Y75/8GB/256GB/FHD/W10) 4.713e+02
## ProductSpectre 13-V100nv 3.394e+02
## ProductSpectre 13-V111dx 3.416e+02
## ProductSpectre Pro 3.345e+02
## ProductSpectre x360 3.351e+02
## ProductSpectre X360 3.395e+02
## ProductSpin 3 4.695e+02
## ProductSpin 5 4.686e+02
## ProductSpin SP111-31 5.329e+02
## ProductStream 11-Y000na 3.309e+02
## ProductStream 14-AX000nv 3.290e+02
## ProductStream 14-AX001nv 3.284e+02
## ProductStream 14-AX040wm 3.222e+02
## ProductSurface Laptop NA
## ProductSwift 3 4.632e+02
## ProductSwift 7 4.726e+02
## ProductSwift SF114-31-P5HY 4.720e+02
## ProductTecra A40-C-1DF 1.100e+02
## ProductTecra A40-C-1E5 1.277e+02
## ProductTecra A40-C-1KF 1.103e+02
## ProductTecra A50-C-1ZV 1.079e+02
## ProductTecra A50-C-218 1.204e+02
## ProductTecra A50-C-21G 1.208e+02
## ProductTecra A50-D-11D 1.050e+02
## ProductTecra A50-D-11M 1.051e+02
## ProductTecra X40-D-10G 1.127e+02
## ProductTecra X40-D-10H 1.144e+02
## ProductTecra X40-D-10Z 1.116e+02
## ProductTecra Z40-C-12X 1.109e+02
## ProductTecra Z40-C-12Z 1.094e+02
## ProductTecra Z40-C-136 1.146e+02
## ProductTecra Z40-C-161 1.313e+02
## ProductTecra Z50-C-140 1.261e+02
## ProductTecra Z50-C-144 1.074e+02
## ProductTecra Z50-D-10E NA
## ProductThinkpad 13 2.456e+02
## ProductThinkPad 13 2.397e+02
## ProductThinkpad E470 2.424e+02
## ProductThinkPad E470 2.448e+02
## ProductThinkPad E480 2.486e+02
## ProductThinkpad E570 2.402e+02
## ProductThinkPad E570 2.403e+02
## ProductThinkPad E580 2.611e+02
## ProductThinkPad L460 2.493e+02
## ProductThinkPad L470 2.390e+02
## ProductThinkpad L560 2.467e+02
## ProductThinkPad L570 2.401e+02
## ProductThinkPad P40 2.661e+02
## ProductThinkpad P50 3.073e+02
## ProductThinkpad P51 1.372e+02
## ProductThinkPad P51 4.958e+02
## ProductThinkpad P51s 4.210e+02
## ProductThinkPad P51s 4.167e+02
## ProductThinkPad P70 3.054e+02
## ProductThinkpad P71 2.876e+02
## ProductThinkpad T460 2.426e+02
## ProductThinkPad T460 2.452e+02
## ProductThinkpad T460p 3.273e+02
## ProductThinkpad T460s 2.506e+02
## ProductThinkPad T460s 2.542e+02
## ProductThinkpad T470 2.453e+02
## ProductThinkPad T470 2.428e+02
## ProductThinkpad T470p 4.142e+02
## ProductThinkPad T470p 2.894e+02
## ProductThinkpad T470s 2.499e+02
## ProductThinkPad T470s 2.421e+02
## ProductThinkpad T560 2.515e+02
## ProductThinkPad T560 2.479e+02
## ProductThinkpad T570 3.964e+02
## ProductThinkPad T570 2.430e+02
## ProductThinkpad X1 2.506e+02
## ProductThinkPad X1 2.468e+02
## ProductThinkpad X260 2.649e+02
## ProductThinkpad X270 2.449e+02
## ProductThinkPad X270 2.468e+02
## ProductThinkpad Yoga 2.518e+02
## ProductThinkPad Yoga 2.467e+02
## ProductTMX349-G2-M-50FS (i5-7200U/8GB/256GB/FHD/W10) 4.667e+02
## ProductTP501UA-CJ131T (i5-7200U/8GB/1TB/W10) 1.321e+02
## ProductTravelMate B 4.668e+02
## ProductTravelMate B117-M 4.080e+02
## ProductTravelMate P238-M 4.689e+02
## ProductTravelMate P259-G2 4.672e+02
## ProductUX410UA-GV097T (i3-7100U/4GB/256GB/FHD/W10) 1.165e+02
## ProductUX410UA-GV350T (i5-8250U/8GB/256GB/FHD/W10) 1.150e+02
## ProductUX430UQ-GV209R (i7-7500U/8GB/256GB/GeForce 1.082e+02
## ProductUX510UX-CN269T (i7-7500U/8GB/256GB 1.187e+02
## ProductV110-15IAP (N3350/4GB/128GB/No 2.652e+02
## ProductV110-15IAP (N3350/4GB/1TB/No 2.640e+02
## ProductV110-15IKB (i5-7200U/4GB/128GB/W10) 2.446e+02
## ProductV110-15ISK (3855U/4GB/500GB/W10) 2.630e+02
## ProductV110-15ISK (i3-6006U/4GB/128GB/W10) 2.458e+02
## ProductV110-15ISK (i3-6006U/4GB/1TB/No 2.466e+02
## ProductV110-15ISK (i3-6006U/4GB/1TB/Radeon 2.472e+02
## ProductV110-15ISK (i3-6006U/4GB/500GB/W10) 2.441e+02
## ProductV110-15ISK (i5-6200U/4GB/128GB/W10) 2.453e+02
## ProductV110-15ISK (i5-6200U/4GB/500GB/No 2.446e+02
## ProductV110-15ISK (i5-6200U/4GB/500GB/W10) 2.440e+02
## ProductV131 (X5-Z8350/4GB/32GB/FHD/W10) 1.053e+02
## ProductV142 (X5-Z8350/2GB/32GB/W10) NA
## ProductV310-15IKB (i5-7200U/4GB/1TB/FHD/W10) 3.102e+02
## ProductV310-15IKB (i5-7200U/4GB/1TB/No 2.451e+02
## ProductV310-15IKB (i5-7200U/8GB/1TB 2.504e+02
## ProductV310-15IKB (i7-7500U/4GB/1TB/FHD/W10) 2.454e+02
## ProductV310-15ISK (i3-6006U/4GB/128GB/FHD/No 2.469e+02
## ProductV310-15ISK (i3-6006U/4GB/1TB/FHD/W10) 2.459e+02
## ProductV310-15ISK (i3-6006U/4GB/500GB/No 2.456e+02
## ProductV310-15ISK (i5-6200U/4GB/1TB/FHD/No 2.462e+02
## ProductV310-15ISK (i5-7200U/4GB/1TB/FHD/W10) 2.450e+02
## ProductV310-15ISK (i5-7200U/8GB/1TB 2.481e+02
## ProductV320-17ISK (i3-6006U/4GB/500GB/FHD/No 2.474e+02
## ProductV330-15IKB (i3-7130U/4GB/128GB/FHD/W10) 2.533e+02
## ProductV330-15IKB (i5-8250U/4GB/256GB/FHD/W10) 2.463e+02
## ProductV330-15IKB (i5-8250U/4GB/500GB/FHD/W10) 2.455e+02
## ProductV330-15IKB (i5-8250U/8GB/256GB/FHD/W10) 2.453e+02
## ProductV330-15IKB (i7-8550U/8GB/256GB/FHD/W10) 2.454e+02
## ProductV510-15IKB (i5-7200U/8GB/256GB/FHD/No 2.470e+02
## ProductVivoBook E12 2.385e+02
## ProductVivobook E200HA 3.070e+02
## ProductVivoBook E201NA 2.386e+02
## ProductVivoBook E403NA 2.224e+02
## ProductVivoBook Flip 2.384e+02
## ProductVivoBook L402NA 2.278e+02
## ProductVivobook Max 2.468e+02
## ProductVivoBook Max 9.575e+01
## ProductVivoBook Pro 2.255e+02
## ProductVivoBook S14 1.158e+02
## ProductVivoBook S15 8.513e+01
## ProductVivoBook X540YA-XX519T 2.482e+02
## ProductVivobook X541UV-DM1217T 1.309e+02
## ProductVostro 3559 3.542e+02
## ProductVostro 3568 3.487e+02
## ProductVostro 5370 3.570e+02
## ProductVostro 5468 3.519e+02
## ProductVostro 5471 3.567e+02
## ProductVostro 5568 3.482e+02
## ProductX505BP-BR019T (A9-9420/4GB/1TB/Radeon 1.489e+02
## ProductX540SA-RBPDN09 (N3710/4GB/1TB/W10) 1.308e+02
## ProductX540UA-DM186 (i3-6006U/4GB/1TB/FHD/Linux) 1.174e+02
## ProductX541NA (N3350/4GB/1TB/FHD/W10) 1.517e+02
## ProductX541NA (N3350/4GB/1TB/Linux) 1.539e+02
## ProductX541NA (N4200/4GB/1TB/W10) 1.409e+02
## ProductX541NA-GO020T (N3350/4GB/1TB/W10) 1.530e+02
## ProductX541NA-GO121 (N4200/4GB/1TB/Linux) 1.423e+02
## ProductX541NA-GO414T (N3350/8GB/1TB/W10) 1.515e+02
## ProductX541NA-PD1003Y (N4200/4GB/500GB/W10) 1.422e+02
## ProductX541UA-DM1897 (i3-6006U/4GB/256GB/FHD/Linux) 1.153e+02
## ProductX541UV-DM1439T (i3-7100U/6GB/256GB/GeForce 1.352e+02
## ProductX542UQ-DM117 (i3-7100U/8GB/1TB/GeForce 1.115e+02
## ProductX542UQ-GO005 (i5-7200U/8GB/1TB/GeForce 1.117e+02
## ProductX550VX-XX015D (i5-6300HQ/4GB/1TB/GeForce 2.173e+02
## ProductX553SA-XX021T (N3050/4GB/500GB/W10) 1.588e+02
## ProductX553SA-XX031T (N3050/4GB/500GB/W10) 1.469e+02
## ProductX555BP-XX180T (A9-9420/4GB/1TB/Radeon 1.498e+02
## ProductX555QG-DM242T (A10-9620P/4GB/1TB 2.593e+02
## ProductX556UJ-XO044T (i7-6500U/4GB/500GB/GeForce 1.281e+02
## ProductX705UV-BX074T (i3-6006U/4GB/1TB/GeForce 1.188e+02
## ProductX751NV-TY001 (N4200/4GB/1TB/GeForce 1.615e+02
## ProductX751NV-TY001T (N4200/4GB/1TB/GeForce 1.613e+02
## ProductX751SV-TY001T (N3710/4GB/1TB/GeForce 1.905e+02
## ProductXPS 13 3.489e+02
## ProductXPS 15 2.511e+02
## ProductYoga 11e 1.414e+02
## ProductYoga 500-14IBD 2.544e+02
## ProductYoga 500-14ISK 2.460e+02
## ProductYoga 500-15ISK 2.486e+02
## ProductYoga 510-15IKB 2.566e+02
## ProductYoga 520-14IKB 2.472e+02
## ProductYoga 700-11ISK 1.553e+02
## ProductYoga 720-13IKB 2.552e+02
## ProductYoga 720-15IKB 3.896e+02
## ProductYoga 730 2.574e+02
## ProductYoga 900-13ISK 2.717e+02
## ProductYoga 900S-12ISK 1.577e+02
## ProductYoga 910-13IKB 2.477e+02
## ProductYoga 920-13IKB 2.496e+02
## ProductYoga Book 2.377e+02
## ProductZbook 15 1.783e+02
## ProductZBook 15 9.249e+01
## ProductZBook 15u 2.398e+02
## ProductZbook 17 3.456e+02
## ProductZBook 17 1.432e+02
## ProductZBook Studio NA
## ProductZenbook 3 9.779e+01
## ProductZenBook 3 1.109e+02
## ProductZenbook Flip 1.162e+02
## ProductZenBook Flip 1.068e+02
## ProductZenBook Pro 2.263e+02
## ProductZenBook UX305CA-UBM1 2.499e+02
## ProductZenBook UX310UA-FB485T 1.408e+02
## ProductZenBook UX310UA-WB71 1.165e+02
## ProductZenBook UX310UQ-GL026T 1.325e+02
## ProductZenbook UX330UA-AH5Q 1.138e+02
## ProductZenbook UX390UA 1.166e+02
## ProductZenbook UX410UA-GV027T 1.146e+02
## ProductZenBook UX410UA-GV183T 1.152e+02
## ProductZenbook UX430UA 1.111e+02
## ProductZenBook UX430UA 1.135e+02
## ProductZenBook UX430UN 1.183e+02
## ProductZenbook UX510UW-FI095T 1.303e+02
## ProductZenBook UX510UX-CN211T 1.153e+02
## ProductZenBook UX530UQ-PRO NA
## TypeNameGaming 6.853e+01
## TypeNameNetbook 5.378e+01
## TypeNameNotebook 4.228e+01
## TypeNameUltrabook 4.102e+01
## TypeNameWorkstation 2.018e+02
## Inches 1.532e+01
## ScreenResolution1440x900 1.003e+02
## ScreenResolution1600x900 6.625e+01
## ScreenResolution1920x1080 NA
## ScreenResolution2560x1440 5.864e+01
## ScreenResolution4K Ultra HD / Touchscreen 3840x2160 5.022e+01
## ScreenResolution4K Ultra HD 3840x2160 5.946e+01
## ScreenResolutionFull HD / Touchscreen 1920x1080 3.440e+01
## ScreenResolutionFull HD 1920x1080 1.251e+01
## ScreenResolutionIPS Panel 1366x768 6.592e+01
## ScreenResolutionIPS Panel 2560x1440 5.996e+01
## ScreenResolutionIPS Panel 4K Ultra HD / Touchscreen 3840x2160 3.986e+01
## ScreenResolutionIPS Panel 4K Ultra HD 3840x2160 4.621e+01
## ScreenResolutionIPS Panel Full HD / Touchscreen 1920x1080 3.517e+01
## ScreenResolutionIPS Panel Full HD 1366x768 8.030e+01
## ScreenResolutionIPS Panel Full HD 1920x1080 1.892e+01
## ScreenResolutionIPS Panel Full HD 1920x1200 NA
## ScreenResolutionIPS Panel Full HD 2160x1440 NA
## ScreenResolutionIPS Panel Full HD 2560x1440 2.212e+02
## ScreenResolutionIPS Panel Quad HD+ / Touchscreen 3200x1800 1.131e+02
## ScreenResolutionIPS Panel Quad HD+ 2560x1440 6.170e+01
## ScreenResolutionIPS Panel Quad HD+ 3200x1800 NA
## ScreenResolutionIPS Panel Retina Display 2304x1440 NA
## ScreenResolutionIPS Panel Retina Display 2560x1600 9.531e+01
## ScreenResolutionIPS Panel Retina Display 2736x1824 NA
## ScreenResolutionIPS Panel Retina Display 2880x1800 NA
## ScreenResolutionIPS Panel Touchscreen / 4K Ultra HD 3840x2160 1.428e+02
## ScreenResolutionIPS Panel Touchscreen 1366x768 1.167e+02
## ScreenResolutionIPS Panel Touchscreen 1920x1200 NA
## ScreenResolutionIPS Panel Touchscreen 2400x1600 NA
## ScreenResolutionIPS Panel Touchscreen 2560x1440 6.889e+01
## ScreenResolutionQuad HD+ / Touchscreen 3200x1800 3.492e+01
## ScreenResolutionQuad HD+ 3200x1800 8.351e+01
## ScreenResolutionTouchscreen / 4K Ultra HD 3840x2160 2.494e+02
## ScreenResolutionTouchscreen / Full HD 1920x1080 9.465e+01
## ScreenResolutionTouchscreen / Quad HD+ 3200x1800 8.001e+01
## ScreenResolutionTouchscreen 1366x768 5.069e+01
## ScreenResolutionTouchscreen 2256x1504 NA
## ScreenResolutionTouchscreen 2400x1600 NA
## ScreenResolutionTouchscreen 2560x1440 5.538e+01
## CpuAMD A10-Series 9620P 2.5GHz 2.381e+02
## CpuAMD A10-Series A10-9620P 2.5GHz NA
## CpuAMD A12-Series 9700P 2.5GHz NA
## CpuAMD A12-Series 9720P 2.7GHz 2.380e+02
## CpuAMD A12-Series 9720P 3.6GHz NA
## CpuAMD A4-Series 7210 2.2GHz 1.064e+02
## CpuAMD A6-Series 7310 2GHz NA
## CpuAMD A6-Series 9220 2.5GHz 8.768e+01
## CpuAMD A6-Series 9220 2.9GHz 1.519e+02
## CpuAMD A6-Series A6-9220 2.5GHz NA
## CpuAMD A8-Series 7410 2.2GHz NA
## CpuAMD A9-Series 9410 2.9GHz NA
## CpuAMD A9-Series 9420 2.9GHz 1.803e+02
## CpuAMD A9-Series 9420 3GHz 2.248e+02
## CpuAMD A9-Series A9-9420 3GHz NA
## CpuAMD E-Series 6110 1.5GHz NA
## CpuAMD E-Series 7110 1.8GHz NA
## CpuAMD E-Series 9000 2.2GHz 1.541e+02
## CpuAMD E-Series 9000e 1.5GHz NA
## CpuAMD E-Series E2-6110 1.5GHz NA
## CpuAMD E-Series E2-9000 2.2GHz 1.543e+02
## CpuAMD E-Series E2-9000e 1.5GHz NA
## CpuAMD FX 8800P 2.1GHz NA
## CpuAMD FX 9830P 3GHz NA
## CpuAMD Ryzen 1600 3.2GHz 3.625e+02
## CpuAMD Ryzen 1700 3GHz 3.568e+02
## CpuIntel Atom x5-Z8300 1.44GHz NA
## CpuIntel Atom x5-Z8350 1.44GHz NA
## CpuIntel Atom X5-Z8350 1.44GHz NA
## CpuIntel Atom x5-Z8550 1.44GHz NA
## CpuIntel Atom Z8350 1.92GHz NA
## CpuIntel Celeron Dual Core 3205U 1.5GHz NA
## CpuIntel Celeron Dual Core 3855U 1.6GHz 2.413e+02
## CpuIntel Celeron Dual Core N3050 1.6GHz 2.570e+02
## CpuIntel Celeron Dual Core N3060 1.60GHz 3.105e+02
## CpuIntel Celeron Dual Core N3060 1.6GHz 2.551e+02
## CpuIntel Celeron Dual Core N3350 1.1GHz 2.412e+02
## CpuIntel Celeron Dual Core N3350 2.0GHz NA
## CpuIntel Celeron Dual Core N3350 2GHz 2.292e+02
## CpuIntel Celeron Quad Core N3160 1.6GHz NA
## CpuIntel Celeron Quad Core N3450 1.1GHz NA
## CpuIntel Celeron Quad Core N3710 1.6GHz NA
## CpuIntel Core i3 6006U 2.0GHz 2.286e+02
## CpuIntel Core i3 6006U 2.2GHz 2.420e+02
## CpuIntel Core i3 6006U 2GHz 2.269e+02
## CpuIntel Core i3 6100U 2.1GHz 2.421e+02
## CpuIntel Core i3 6100U 2.3GHz 2.289e+02
## CpuIntel Core i3 7100U 2.4GHz 2.252e+02
## CpuIntel Core i3 7130U 2.7GHz 2.327e+02
## CpuIntel Core i5 1.3GHz 1.052e+02
## CpuIntel Core i5 1.6GHz NA
## CpuIntel Core i5 1.8GHz NA
## CpuIntel Core i5 2.0GHz 9.077e+01
## CpuIntel Core i5 2.3GHz 1.339e+02
## CpuIntel Core i5 2.9GHz 9.047e+01
## CpuIntel Core i5 3.1GHz NA
## CpuIntel Core i5 6200U 2.3GHz 2.285e+02
## CpuIntel Core i5 6260U 1.8GHz 2.373e+02
## CpuIntel Core i5 6300HQ 2.3GHz 3.082e+02
## CpuIntel Core i5 6300U 2.4GHz 2.304e+02
## CpuIntel Core i5 6440HQ 2.6GHz NA
## CpuIntel Core i5 7200U 2.50GHz 2.383e+02
## CpuIntel Core i5 7200U 2.5GHz 2.246e+02
## CpuIntel Core i5 7200U 2.70GHz 2.403e+02
## CpuIntel Core i5 7200U 2.7GHz 2.461e+02
## CpuIntel Core i5 7300HQ 2.5GHz 2.585e+02
## CpuIntel Core i5 7300U 2.6GHz 2.249e+02
## CpuIntel Core i5 7440HQ 2.8GHz 2.285e+02
## CpuIntel Core i5 7500U 2.7GHz 2.388e+02
## CpuIntel Core i5 7Y54 1.2GHz 2.281e+02
## CpuIntel Core i5 7Y57 1.2GHz 2.435e+02
## CpuIntel Core i5 8250U 1.6GHz 2.234e+02
## CpuIntel Core i7 2.2GHz 1.222e+02
## CpuIntel Core i7 2.7GHz 1.041e+02
## CpuIntel Core i7 2.8GHz 1.052e+02
## CpuIntel Core i7 2.9GHz NA
## CpuIntel Core i7 6500U 2.50GHz 2.365e+02
## CpuIntel Core i7 6500U 2.5GHz 2.292e+02
## CpuIntel Core i7 6560U 2.2GHz 2.352e+02
## CpuIntel Core i7 6600U 2.6GHz 2.312e+02
## CpuIntel Core i7 6700HQ 2.6GHz 2.965e+02
## CpuIntel Core i7 6820HK 2.7GHz 2.749e+02
## CpuIntel Core i7 6820HQ 2.7GHz 2.663e+02
## CpuIntel Core i7 6920HQ 2.9GHz NA
## CpuIntel Core i7 7500U 2.5GHz NA
## CpuIntel Core i7 7500U 2.7GHz 2.250e+02
## CpuIntel Core i7 7560U 2.4GHz 2.473e+02
## CpuIntel Core i7 7600U 2.8GHz 2.246e+02
## CpuIntel Core i7 7660U 2.5GHz 2.406e+02
## CpuIntel Core i7 7700HQ 2.7GHz 2.777e+02
## CpuIntel Core i7 7700HQ 2.8GHz 2.584e+02
## CpuIntel Core i7 7820HK 2.9GHz 2.658e+02
## CpuIntel Core i7 7820HQ 2.9GHz 1.076e+02
## CpuIntel Core i7 7Y75 1.3GHz 2.256e+02
## CpuIntel Core i7 8550U 1.8GHz 2.229e+02
## CpuIntel Core i7 8650U 1.9GHz 2.646e+02
## CpuIntel Core M 1.1GHz 1.165e+02
## CpuIntel Core M 1.2GHz 1.801e+02
## CpuIntel Core M 6Y30 0.9GHz NA
## CpuIntel Core M 6Y54 1.1GHz NA
## CpuIntel Core M 6Y75 1.2GHz NA
## CpuIntel Core M 7Y30 1.0GHz NA
## CpuIntel Core M m3 1.2GHz NA
## CpuIntel Core M M3-6Y30 0.9GHz 1.103e+02
## CpuIntel Core M m3-7Y30 2.2GHz 2.357e+02
## CpuIntel Core M m7-6Y75 1.2GHz NA
## CpuIntel Core M M7-6Y75 1.2GHz NA
## CpuIntel Pentium Dual Core 4405U 2.1GHz 2.357e+02
## CpuIntel Pentium Dual Core 4405Y 1.5GHz NA
## CpuIntel Pentium Dual Core N4200 1.1GHz NA
## CpuIntel Pentium Quad Core N3700 1.6GHz 2.625e+02
## CpuIntel Pentium Quad Core N3710 1.6GHz 2.625e+02
## CpuIntel Pentium Quad Core N4200 1.1GHz 2.345e+02
## CpuIntel Xeon E3-1505M V6 3GHz 2.979e+02
## CpuIntel Xeon E3-1535M v5 2.9GHz NA
## CpuIntel Xeon E3-1535M v6 3.1GHz NA
## CpuSamsung Cortex A72&A53 2.0GHz NA
## Ram 1.478e+00
## Memory1.0TB Hybrid 1.659e+02
## Memory128GB Flash Storage 1.708e+02
## Memory128GB HDD NA
## Memory128GB SSD 1.523e+02
## Memory128GB SSD + 1TB HDD 1.526e+02
## Memory128GB SSD + 2TB HDD 1.618e+02
## Memory16GB Flash Storage 2.132e+02
## Memory16GB SSD NA
## Memory180GB SSD 1.602e+02
## Memory1TB HDD 1.521e+02
## Memory1TB HDD + 1TB HDD NA
## Memory1TB SSD 1.530e+02
## Memory1TB SSD + 1TB HDD 1.753e+02
## Memory240GB SSD NA
## Memory256GB Flash Storage 1.628e+02
## Memory256GB SSD 1.512e+02
## Memory256GB SSD + 1.0TB Hybrid 1.773e+02
## Memory256GB SSD + 1TB HDD 1.542e+02
## Memory256GB SSD + 256GB SSD 1.048e+02
## Memory256GB SSD + 2TB HDD 1.544e+02
## Memory256GB SSD + 500GB HDD 1.722e+02
## Memory2TB HDD 1.544e+02
## Memory32GB Flash Storage 6.342e+01
## Memory32GB HDD NA
## Memory32GB SSD NA
## Memory500GB HDD 1.522e+02
## Memory508GB Hybrid 1.811e+02
## Memory512GB Flash Storage NA
## Memory512GB SSD 1.507e+02
## Memory512GB SSD + 1.0TB Hybrid 1.804e+02
## Memory512GB SSD + 1TB HDD 1.539e+02
## Memory512GB SSD + 256GB SSD NA
## Memory512GB SSD + 2TB HDD 1.715e+02
## Memory512GB SSD + 512GB SSD 1.779e+02
## Memory64GB Flash Storage NA
## Memory64GB Flash Storage + 1TB HDD NA
## Memory64GB SSD NA
## Memory8GB SSD NA
## GpuAMD FirePro W4190M 2.232e+02
## GpuAMD FirePro W5130M NA
## GpuAMD FirePro W6150M 1.049e+02
## GpuAMD R17M-M1-70 NA
## GpuAMD R4 Graphics 1.267e+02
## GpuAMD Radeon 520 8.657e+01
## GpuAMD Radeon 530 9.988e+01
## GpuAMD Radeon 540 1.095e+02
## GpuAMD Radeon Pro 455 NA
## GpuAMD Radeon Pro 555 NA
## GpuAMD Radeon Pro 560 NA
## GpuAMD Radeon R2 NA
## GpuAMD Radeon R2 Graphics NA
## GpuAMD Radeon R3 NA
## GpuAMD Radeon R4 NA
## GpuAMD Radeon R4 Graphics NA
## GpuAMD Radeon R5 NA
## GpuAMD Radeon R5 430 NA
## GpuAMD Radeon R5 520 NA
## GpuAMD Radeon R5 M315 1.262e+02
## GpuAMD Radeon R5 M330 NA
## GpuAMD Radeon R5 M420 7.425e+01
## GpuAMD Radeon R5 M420X 8.435e+01
## GpuAMD Radeon R5 M430 7.174e+01
## GpuAMD Radeon R7 1.309e+02
## GpuAMD Radeon R7 Graphics NA
## GpuAMD Radeon R7 M360 NA
## GpuAMD Radeon R7 M365X 1.078e+02
## GpuAMD Radeon R7 M440 1.311e+02
## GpuAMD Radeon R7 M445 9.874e+01
## GpuAMD Radeon R7 M460 NA
## GpuAMD Radeon R7 M465 1.037e+02
## GpuAMD Radeon R9 M385 NA
## GpuAMD Radeon RX 540 NA
## GpuAMD Radeon RX 550 1.076e+02
## GpuAMD Radeon RX 560 NA
## GpuAMD Radeon RX 580 NA
## GpuARM Mali T860 MP4 NA
## GpuIntel Graphics 620 1.042e+02
## GpuIntel HD Graphics 7.961e+01
## GpuIntel HD Graphics 400 1.256e+02
## GpuIntel HD Graphics 405 1.557e+02
## GpuIntel HD Graphics 500 NA
## GpuIntel HD Graphics 505 NA
## GpuIntel HD Graphics 510 NA
## GpuIntel HD Graphics 515 7.367e+01
## GpuIntel HD Graphics 520 7.150e+01
## GpuIntel HD Graphics 530 1.650e+02
## GpuIntel HD Graphics 5300 NA
## GpuIntel HD Graphics 540 NA
## GpuIntel HD Graphics 6000 NA
## GpuIntel HD Graphics 615 NA
## GpuIntel HD Graphics 620 6.063e+01
## GpuIntel HD Graphics 620 1.035e+02
## GpuIntel HD Graphics 630 1.745e+02
## GpuIntel Iris Graphics 540 NA
## GpuIntel Iris Graphics 550 NA
## GpuIntel Iris Plus Graphics 640 1.105e+02
## GpuIntel Iris Plus Graphics 650 NA
## GpuIntel Iris Pro Graphics NA
## GpuIntel UHD Graphics 620 5.829e+01
## GpuNvidia GeForce 150MX 2.216e+02
## GpuNvidia GeForce 920 1.060e+02
## GpuNvidia GeForce 920M 9.353e+01
## GpuNvidia GeForce 920MX 6.702e+01
## GpuNvidia GeForce 920MX 9.420e+01
## GpuNvidia GeForce 930M 9.522e+01
## GpuNvidia GeForce 930MX 6.506e+01
## GpuNvidia GeForce 930MX 7.373e+01
## GpuNvidia GeForce 940M NA
## GpuNvidia GeForce 940MX 5.560e+01
## GpuNvidia GeForce 960M 2.300e+02
## GpuNvidia GeForce GT 940MX 8.195e+01
## GpuNvidia GeForce GTX 1050 1.483e+02
## GpuNvidia GeForce GTX 1050 Ti 1.443e+02
## GpuNvidia GeForce GTX 1050M 1.518e+02
## GpuNvidia GeForce GTX 1050Ti 1.655e+02
## GpuNvidia GeForce GTX 1060 1.393e+02
## GpuNvidia GeForce GTX 1070 1.345e+02
## GpuNvidia GeForce GTX 1070M 1.967e+02
## GpuNvidia GeForce GTX 1080 1.749e+02
## GpuNvidia GeForce GTX 930MX NA
## GpuNvidia GeForce GTX 940M 9.884e+01
## GpuNvidia GeForce GTX 940MX 7.145e+01
## GpuNvidia GeForce GTX 950M NA
## GpuNvidia GeForce GTX 960 8.115e+01
## GpuNvidia GeForce GTX 960<U+039C> 9.337e+01
## GpuNvidia GeForce GTX 960M NA
## GpuNvidia GeForce GTX 965M NA
## GpuNvidia GeForce GTX 970M NA
## GpuNvidia GeForce GTX 980 NA
## GpuNvidia GeForce GTX 980M NA
## GpuNvidia GeForce GTX1050 Ti NA
## GpuNvidia GeForce GTX1060 NA
## GpuNvidia GeForce GTX1080 NA
## GpuNvidia GeForce MX130 6.927e+01
## GpuNvidia GeForce MX150 NA
## GpuNvidia GTX 980 SLI NA
## GpuNvidia Quadro 3000M NA
## GpuNvidia Quadro M1000M 1.432e+02
## GpuNvidia Quadro M1200 1.399e+02
## GpuNvidia Quadro M2000M NA
## GpuNvidia Quadro M2200 1.417e+02
## GpuNvidia Quadro M2200M NA
## GpuNvidia Quadro M3000M NA
## GpuNvidia Quadro M500M NA
## GpuNvidia Quadro M520M NA
## GpuNvidia Quadro M620 NA
## GpuNvidia Quadro M620M NA
## OpSysChrome OS NA
## OpSysLinux 7.550e+01
## OpSysMac OS X NA
## OpSysmacOS NA
## OpSysNo OS 7.621e+01
## OpSysWindows 10 7.423e+01
## OpSysWindows 10 S NA
## OpSysWindows 7 7.883e+01
## Weight 3.207e+01
## Frequenza NA
## Risoluzione1440x900 NA
## Risoluzione1600x900 NA
## Risoluzione1920x1080 NA
## Risoluzione1920x1200 NA
## Risoluzione2160x1440 NA
## Risoluzione2256x1504 NA
## Risoluzione2304x1440 NA
## Risoluzione2400x1600 NA
## Risoluzione2560x1440 NA
## Risoluzione2560x1600 NA
## Risoluzione2736x1824 NA
## Risoluzione2880x1800 NA
## Risoluzione3200x1800 NA
## Risoluzione3840x2160 NA
## Pixel NA
## SolidStateDiskTrue NA
## LogPrice 3.169e+01
## t value
## (Intercept) -8.260
## X -1.034
## CompanyApple -2.887
## CompanyAsus -2.341
## CompanyChuwi -2.782
## CompanyDell 1.662
## CompanyFujitsu -2.283
## CompanyGoogle -2.102
## CompanyHP 0.820
## CompanyHuawei -2.159
## CompanyLenovo -2.396
## CompanyLG -1.711
## CompanyMediacom -3.299
## CompanyMicrosoft -2.597
## CompanyMSI -3.134
## CompanyRazer -3.437
## CompanySamsung -3.287
## CompanyToshiba -2.446
## CompanyVero -2.059
## CompanyXiaomi -2.300
## Product14-am079na (N3710/8GB/2TB/W10) -2.905
## Product15-AC110nv (i7-6500U/6GB/1TB/Radeon -3.719
## Product15-AY023na (N3710/8GB/2TB/W10) -3.067
## Product15-ay047nv (i3-6006U/6GB/1TB/Radeon -3.358
## Product15-BA015wm (E2-7110/4GB/500GB/W10) -3.280
## Product15-ba043na (A12-9700P/8GB/2TB/W10) -4.278
## Product15-bs002nv (i3-6006U/4GB/128GB/FHD/W10) -3.070
## Product15-bs005nv (i3-6006U/4GB/1TB -3.081
## Product15-bs011nv (i7-7500U/4GB/500GB/Radeon -3.453
## Product15-bs012nv (i7-7500U/8GB/1TB/Radeon -3.425
## Product15-bs015dx (i5-7200U/8GB/1TB/W10) -3.328
## Product15-bs017nv (i7-7500U/8GB/256GB/Radeon -3.268
## Product15-bs018nq (i3-6006U/4GB/500GB/FHD/No -2.915
## Product15-bs023nv (i3-6006U/4GB/1TB/FHD/W10) -3.313
## Product15-bs024nv (i5-7200U/8GB/128GB/W10) -3.307
## Product15-bs025nv (i5-7200U/8GB/256GB/W10) -3.225
## Product15-BS026nv (i5-7200U/8GB/256GB/Radeon -3.093
## Product15-BS028nv (i3-6006U/4GB/1TB/Radeon -3.101
## Product15-bs053od (i7-7500U/6GB/1TB/W10) -3.276
## Product15-bs078cl (i7-7500U/8GB/2TB/W10) -3.254
## Product15-BS078nr (i7-7500U/8GB/1TB/W10) -3.383
## Product15-BS101nv (i7-8550U/8GB/256GB/FHD/W10) -3.406
## Product15-BS103nv (i5-8250U/6GB/256GB/Radeon -3.072
## Product15-bs190od (i5-8250U/4GB/1TB/W10) -3.105
## Product15-bw000nv (E2-9000e/4GB/500GB/Radeon -3.583
## Product15-bw002nv (A6-9220/4GB/256GB/Radeon -3.840
## Product15-bw003nv (A9-Series-9420/4GB/256GB/FHD/W10) -3.179
## Product15-BW004nv (A9-9420/4GB/256GB/Radeon -3.107
## Product15-bw007nv (A10-9620P/6GB/128GB/Radeon -4.226
## Product15-bw009nv (A12-9720P/6GB/1TB/Radeon -3.019
## Product15-bw011nv (A6-9220/4GB/1TB/FHD/W10) -3.208
## Product15-BW037na (A9-9420/4GB/1TB/Radeon -3.159
## Product15-BW091ND (A9-9420/6GB/1TB -4.235
## Product15-BW094nd (A6-9220/8GB/128GB/W10) -3.894
## Product15-cb003na (i5-7300HQ/8GB/1TB -6.410
## Product15-cd005nv (A9-9420/6GB/256GB/Radeon -4.361
## Product15-ra044nv (N3060/4GB/500GB/W10) -3.524
## Product15-rb013nv (E2-9000e/4GB/500GB/W10) -3.513
## Product17-ak001nv (A6-9220/4GB/500GB/Radeon -3.581
## Product17-ak002nv (A10-9620P/6GB/2TB/Radeon -3.617
## Product17-AK091ND (A9-9420/8GB/1TB/W10) -3.726
## Product17-bs000nv I3 -4.046
## Product17-bs001nv (i5-7200U/6GB/2TB/Radeon -3.511
## Product17-BS037cl (i3-6006U/8GB/1TB/W10) -3.718
## Product17-BS092ND (i3-6006U/8GB/256GB/W10) -4.079
## Product17-X047na (i3-6006U/8GB/1TB/W10) -3.929
## Product17-Y002nv (A10-9600P/6GB/2TB/Radeon -4.437
## Product250 G4 -3.143
## Product250 G5 -3.566
## Product250 G6 -3.241
## Product255 G6 -3.193
## Product320-15ISK (i3-6006U/4GB/1TB/GeForce 2.357
## ProductA541NA-GO342 (N3350/4GB/500GB/Linux) 3.994
## ProductA715-71G-59DH (i5-7300HQ/8GB/1TB/GeForce -3.384
## ProductAlienware 15 -5.809
## ProductAlienware 17 -5.829
## ProductAspire 1 -2.699
## ProductAspire 3 -1.786
## ProductAspire 5 -2.105
## ProductAspire 7 -3.580
## ProductAspire A315-31 -1.587
## ProductAspire A315-51 -1.897
## ProductAspire A515-51G -2.082
## ProductAspire A515-51G-32MX -1.621
## ProductAspire A515-51G-37JS -1.640
## ProductAspire A515-51G-59QF -1.948
## ProductAspire A517-51G -2.379
## ProductAspire A715-71G -3.537
## ProductAspire E5-475 -1.651
## ProductAspire E5-575 -2.003
## ProductAspire E5-576G -2.117
## ProductAspire E5-774G -2.694
## ProductAspire ES1-523 -2.861
## ProductAspire ES1-531 -1.961
## ProductAspire ES1-533 -1.872
## ProductAspire ES1-572 -1.858
## ProductAspire F5-573G -2.010
## ProductAspire F5-573G-510L -2.219
## ProductAspire R7 -1.981
## ProductAspire VX5-591G -3.478
## ProductB51-80 (i5-6200U/8GB/1008GB/Radeon 1.806
## ProductB51-80 (i5-6200U/8GB/1TB/Radeon 2.120
## ProductB51-80 (i7-6500U/4GB/1008GB/FHD/W7) 1.101
## ProductB51-80 (i7-6500U/8GB/1008GB/Radeon 1.320
## ProductBlade Pro 4.024
## ProductBlade Stealth NA
## ProductC740-C9QX (3205U/2GB/32GB/Chrome -2.180
## ProductCB5-132T-C9KK (N3160/4GB/32GB/Chrome -3.185
## ProductChromebook 11 -2.942
## ProductChromebook 13 -4.442
## ProductChromebook 14 -2.969
## ProductChromebook 15 -2.920
## ProductChromebook 3 2.596
## ProductChromebook C202SA 2.672
## ProductChromebook C731-C78G -2.420
## ProductChromebook C738T-C2EJ -2.801
## ProductChromebook C910-C2ST -2.842
## ProductChromebook CB5-571-C1DZ -2.597
## ProductChromebook Flip -4.570
## ProductChromebook N23 1.455
## ProductChromebook Plus -2.031
## ProductChromebook X360 -4.328
## ProductE402WA-GA007T (E2-6110/4GB/64GB/W10 -2.158
## ProductE402WA-GA010T (E2-6110/2GB/32GB/W10) 0.359
## ProductE5 774G -2.517
## ProductEliteBook 1030 -4.270
## ProductElitebook 1040 -3.400
## ProductEliteBook 1040 -3.544
## ProductElitebook 820 -3.439
## ProductEliteBook 820 -3.383
## ProductElitebook 840 -3.557
## ProductEliteBook 840 -3.685
## ProductElitebook 850 -3.882
## ProductEliteBook 850 -3.793
## ProductElitebook Folio -3.760
## ProductEliteBook Folio -4.111
## ProductEliteBook x360 -2.843
## ProductENVY - -3.675
## ProductEnvy 13-AB002nv -3.783
## ProductEnvy 13-AB020nr -3.590
## ProductEnvy 13-AB077cl -3.656
## ProductEnvy 13-AD007nv -3.293
## ProductEnvy 13-ad009n -3.461
## ProductEnvy 17-U275cl -4.213
## ProductEnvy x360 -3.666
## ProductES1-523-84K7 (A8-7410/8GB/256GB/FHD/W10) -2.906
## ProductExtensa EX2540 -2.014
## ProductExtensa EX2540-58KR -2.028
## ProductF756UX-T4201D (i7-7500U/8GB/128GB -0.006
## ProductFlex 5 1.609
## ProductFlexBook Edge 3.944
## ProductFX502VM-AS73 (i7-7700HQ/16GB/1TB -0.435
## ProductFX502VM-DM105T (i7-6700HQ/8GB/1TB/GeForce -0.727
## ProductFX502VM-DM560T (i7-7700HQ/8GB/1TB 0.211
## ProductFX503VD-E4022T (i7-7700HQ/8GB/1TB/GeForce -1.087
## ProductFX503VM-E4007T (i7-7700HQ/16GB/1TB -1.050
## ProductFX550IK-DM018T (FX-9830P/8GB/1TB/Radeon -3.737
## ProductFX553VD-DM627T (i5-7300HQ/8GB/1TB -0.773
## ProductFX553VD-FY647T (i7-7700HQ/8GB/256GB/GeForce -1.022
## ProductFX753VD-GC007T (i7-7700HQ/8GB/1TB -1.373
## ProductFX753VD-GC071T (i7-7700HQ/8GB/1TB/GeForce -1.541
## ProductFX753VD-GC086T (i5-7300HQ/8GB/1TB -1.290
## ProductFX753VD-GC461T (i7-7700HQ/16GB/1TB -1.177
## ProductFX753VE-GC093 (i7-7700HQ/12GB/1TB/GeForce -1.683
## ProductFX753VE-GC155T (i7-7700HQ/16GB/1TB -0.160
## ProductG701VO-IH74K (i7-6820HK/32GB/2x 1.691
## ProductG752VY-GC162T (i7-6700HQ/16GB/1TB 0.866
## ProductGE62 Apache 1.152
## ProductGE63VR 7RE 0.267
## ProductGE63VR 7RF -0.738
## ProductGE72 Apache 0.979
## ProductGE72MVR 7RG -0.576
## ProductGE72VR 6RF -0.289
## ProductGE72VR Apache -0.191
## ProductGE73VR 7RE 0.248
## ProductGE73VR 7RF -0.417
## ProductGL553VE-FY082T (i7-7700HQ/8GB/1TB -1.011
## ProductGL62 6QF 1.170
## ProductGL62M (i5-7300HQ/8GB/1TB -0.276
## ProductGL62M 7RD -0.324
## ProductGL62M 7RDX -0.280
## ProductGL62M 7REX -0.230
## ProductGL72M 7RDX -0.776
## ProductGL72M 7REX -0.585
## ProductGP62 7RDX -0.381
## ProductGP62M 7RDX -0.353
## ProductGP62M 7REX -0.263
## ProductGP62M Leopard -0.298
## ProductGP62MVR 6RF 0.284
## ProductGP72M 7REX -0.422
## ProductGP72MVR 7RFX -0.462
## ProductGP72VR Leopard -0.351
## ProductGram 14Z970 -0.498
## ProductGram 15Z970 -0.447
## ProductGram 15Z975 NA
## ProductGS40 Phantom 2.074
## ProductGS43VR 7RE 1.007
## ProductGS60 Ghost 2.414
## ProductGS63VR 6RF 1.099
## ProductGS63VR 7RF 1.568
## ProductGS63VR 7RG 0.185
## ProductGS70 Stealth 1.173
## ProductGS73VR 7RF 0.814
## ProductGS73VR 7RG 0.300
## ProductGS73VR Stealth 0.883
## ProductGT62VR 6RD 0.541
## ProductGT62VR 7RE -0.145
## ProductGT72S Dominator 3.208
## ProductGT72VR Dominator 0.020
## ProductGT73EVR 7RE -0.260
## ProductGT73VR Titan -0.440
## ProductGT80S 6QE 4.597
## ProductGT80S 6QF-074US -1.377
## ProductGV62 7RD-1686NL -0.263
## ProductGV62M 7RD -0.222
## ProductIdeaPad 100S-14IBR 2.522
## ProductIdeaPad 110-15IBR -0.962
## ProductIdeaPad 110-15ISK 2.043
## ProductIdeaPad 110-17ACL -3.145
## ProductIdeaPad 120S-14IAP 2.526
## ProductIdeaPad 300-17ISK 0.755
## ProductIdeaPad 310-15ABR -3.604
## ProductIdeaPad 310-15IKB 1.945
## ProductIdeapad 310-15ISK 2.478
## ProductIdeaPad 310-15ISK 1.809
## ProductIdeaPad 320-14IAP 3.013
## ProductIdeaPad 320-15ABR -4.569
## ProductIdeaPad 320-15AST -1.757
## ProductIdeapad 320-15IAP 1.802
## ProductIdeaPad 320-15IAP 2.669
## ProductIdeaPad 320-15IKB 1.723
## ProductIdeapad 320-15IKBN 2.195
## ProductIdeaPad 320-15IKBN 2.269
## ProductIdeapad 320-15IKBR 1.721
## ProductIdeapad 320-15ISK 1.789
## ProductIdeaPad 320-15ISK 2.227
## ProductIdeaPad 320-17IKB 1.471
## ProductIdeaPad 320-17IKBR 1.454
## ProductIdeaPad 320-17ISK 1.505
## ProductIdeaPad 320s-14IKB 1.865
## ProductIdeaPad 500-15ISK 1.228
## ProductIdeaPad 510-15IKB 1.767
## ProductIdeaPad 510-15ISK 1.549
## ProductIdeapad 510S-13IKB 2.141
## ProductIdeaPad 510s-14IKB 1.775
## ProductIdeapad 520-15IKBR 1.566
## ProductIdeaPad 520s-14IKB 2.133
## ProductIdeaPad 520S-14IKB 1.552
## ProductIdeapad 700-15ISK 0.952
## ProductIdeaPad 720S-13IKB 1.635
## ProductIdeaPad 720S-14IKB 1.578
## ProductIdeaPad Y700-15ACZ -5.644
## ProductIdeaPad Y700-15ISK 1.213
## ProductIdeaPad Y900-17ISK 1.545
## ProductIdeaPad Y910-17ISK 2.566
## ProductInspiron 3168 -3.710
## ProductInspiron 3179 -4.301
## ProductInspiron 3552 -3.625
## ProductInspiron 3567 -3.800
## ProductInspiron 3576 -3.903
## ProductInspiron 5368 -3.738
## ProductInspiron 5370 -3.883
## ProductInspiron 5378 -3.946
## ProductInspiron 5379 -3.902
## ProductInspiron 5567 -4.157
## ProductInspiron 5568 -4.341
## ProductInspiron 5570 -4.070
## ProductInspiron 5577 -6.853
## ProductInspiron 5578 -4.125
## ProductInspiron 5579 -4.225
## ProductInspiron 5767 -4.449
## ProductInspiron 5770 -4.421
## ProductInspiron 7378 -4.030
## ProductInspiron 7559 -4.959
## ProductInspiron 7560 -4.160
## ProductInspiron 7567 -6.831
## ProductInspiron 7570 -4.404
## ProductInspiron 7577 -6.906
## ProductInspiron 7579 -4.374
## ProductInspiron 7773 -6.498
## ProductInspiron 7779 -4.174
## ProductInsprion 5767 -4.596
## ProductK146 (N3350/4GB/32GB/W10) 3.139
## ProductK147 (N3350/4GB/32GB/FHD/W10) 2.217
## ProductK556UR-DM621T (i7-7500U/8GB/256GB/GeForce 1.201
## ProductK756UX-T4340T (i5-7200U/8GB/500GB -1.348
## ProductL403NA-GA013TS (N3350/4GB/32GB/W10) 2.431
## ProductL502NA-GO052T (N3350/4GB/128GB/W10) 1.336
## ProductLapBook 12.3 -2.137
## ProductLapbook 15,6 -0.082
## ProductLapBook 15.6" NA
## ProductLaptop MSI 4.454
## ProductLatitude 3180 -3.962
## ProductLatitude 3380 -4.322
## ProductLatitude 3480 -4.069
## ProductLatitude 3570 -3.729
## ProductLatitude 3580 -4.285
## ProductLatitude 5289 -3.644
## ProductLatitude 5480 -4.296
## ProductLatitude 5490 -4.123
## ProductLatitude 5580 -4.425
## ProductLatitude 5590 -4.405
## ProductLatitude 7280 -3.747
## ProductLatitude 7390 -3.519
## ProductLatitude 7480 -3.971
## ProductLatitude E5270 -4.357
## ProductLatitude E5470 -4.132
## ProductLatitude E5570 -4.205
## ProductLatitude E7270 -3.588
## ProductLatitude E7470 -3.930
## ProductLegion Y520-15IKBN 0.143
## ProductLegion Y720-15IKB 0.193
## ProductLenovo IdeaPad 2.675
## ProductLeopard GP72M -0.587
## ProductLifeBook A556 1.212
## ProductLifebook A557 -0.077
## ProductLifeBook A557 NA
## ProductMacBook 12" -3.651
## ProductMacbook Air -1.599
## ProductMacBook Air -1.895
## ProductMacBook Pro NA
## ProductMateBook X NA
## ProductMi Notebook NA
## ProductN23 (N3060/4GB/128GB/W10) 1.660
## ProductN42-20 Chromebook -0.480
## ProductNitro 5 -3.585
## ProductNitro AN515-51 -3.448
## ProductNoteb Pav -3.870
## ProductNotebook 9 1.545
## ProductNotebook Odyssey NA
## ProductOmen - -6.534
## ProductOmen 15-AX205na -6.400
## ProductOmen 15-ce006nv -6.085
## ProductOmen 15-ce007nv -6.521
## ProductOmen 17-an006nv -6.419
## ProductOmen 17-AN010nv -6.572
## ProductOmen 17-an012dx -4.446
## ProductOmen 17-W006na -4.882
## ProductOmen 17-w207nv -6.575
## ProductOmen 17-w212nv -6.752
## ProductOmen 17-W295 -6.666
## ProductPavilion 14-BK001nv -3.237
## ProductPavilion 15-AW003nv -4.266
## ProductPavilion 15-BC000nv -4.537
## ProductPavilion 15-cb003nv -6.398
## ProductPavilion 15-CK000nv -3.491
## ProductPavilion Power -6.434
## ProductPavilion x360 -3.716
## ProductPavilion X360 -3.478
## ProductPixelbook (Core NA
## ProductPL60 7RD NA
## ProductPortege A30-C-1CZ 1.218
## ProductPortege X20W-D-10V 2.406
## ProductPortege X30-D-10J 1.801
## ProductPortege X30-D-10K 3.468
## ProductPortege X30-D-10L 5.533
## ProductPortege X30-D-10V 1.666
## ProductPortege X30-D-10X 1.431
## ProductPortege Z30-C-16H 1.521
## ProductPortege Z30-C-16J 1.450
## ProductPortégé Z30-C-16K 1.919
## ProductPortege Z30-C-16L 0.984
## ProductPortege Z30-C-16P 1.137
## ProductPortege Z30-C-16Z 2.014
## ProductPortégé Z30-C-188 1.232
## ProductPortege Z30-C-1CV 1.074
## ProductPortege Z30-C-1CW 1.316
## ProductPortege Z30T-C-133 1.715
## ProductPrecision 3510 -7.580
## ProductPrecision 3520 -6.726
## ProductPrecision 5520 -0.334
## ProductPrecision 7520 1.634
## ProductPrecision 7720 0.993
## ProductPrecision M5520 -0.023
## ProductPredator 17 -3.553
## ProductPredator G9-793 -3.099
## ProductPro P2540UA-AB51 0.121
## ProductPro P2540UA-XO0192R 0.299
## ProductPro P2540UA-XO0198T 2.458
## ProductPro P2540UA-XS51 -0.337
## ProductProbook 430 -3.768
## ProductProBook 430 -3.596
## ProductProbook 440 -3.729
## ProductProBook 440 -3.745
## ProductProbook 450 -3.872
## ProductProBook 450 -3.932
## ProductProbook 470 -4.102
## ProductProBook 470 -4.199
## ProductProbook 640 -3.800
## ProductProBook 640 -3.846
## ProductProbook 650 -4.006
## ProductProBook 650 -3.998
## ProductProBook x360 -3.687
## ProductQ304UA-BHI5T11 (i5-7200U/6GB/1TB/FHD/W10) 1.792
## ProductQ524UQ-BHI7T15 (i7-7500U/12GB/2TB/GeForce 0.779
## ProductQ534UX-BHI7T19 (i7-7500U/16GB/2TB -0.074
## ProductR417NA-RS01 (N3350/4GB/32GB/W10) 2.109
## ProductR558UA-DM966T (i5-7200U/8GB/128GB/FHD/W10) -0.389
## ProductROG G701VI -1.053
## ProductRog G701VIK-BA060T -4.284
## ProductROG G701VO 7.279
## ProductROG G703VI-E5062T -2.281
## ProductRog G752VL-GC088D -1.074
## ProductRog G752VL-UH71T -0.554
## ProductRog G752VS-BA171T -1.012
## ProductROG G752VSK-GC493T -0.102
## ProductRog G752VT-GC073T 0.140
## ProductRog G752VY-GC229T 0.524
## ProductRog GL502VM-DS74 -0.261
## ProductRog GL502VS -0.487
## ProductRog GL552VW-CN470T -0.003
## ProductRog GL552VW-DM201T 0.329
## ProductRog GL553VE-DS74 -0.464
## ProductROG GL553VE-FY022 -1.568
## ProductRog GL553VE-FY052T -0.846
## ProductRog GL702VM-GC017T -0.513
## ProductRog GL702VM-GC354T -0.928
## ProductRog GL702VS-BA023T -0.745
## ProductRog GL702VS-GC095T -1.400
## ProductROG GL703VD-GC028T -1.293
## ProductRog GL752VW-T4308T -0.199
## ProductRog GL753VD-GC042T -1.508
## ProductRog GL753VD-GC082T -1.160
## ProductRog GL753VE-DS74 -0.846
## ProductRog GL753VE-GC070T -1.083
## ProductRog Strix -0.272
## ProductROG Strix -0.701
## ProductROG Zephyrus 3.417
## ProductSatellite Pro 0.990
## ProductSmartBook 130 3.237
## ProductSmartBook 140 3.781
## ProductSmartBook 141 2.311
## ProductSmartbook 142 1.195
## ProductSmartBook Edge NA
## ProductSP315-51 (i7-7500U/12GB/1TB/FHD/W10) -2.094
## ProductSP714-51 (i7-7Y75/8GB/256GB/FHD/W10) -2.180
## ProductSpectre 13-V100nv -3.639
## ProductSpectre 13-V111dx -3.395
## ProductSpectre Pro -3.343
## ProductSpectre x360 -3.534
## ProductSpectre X360 -3.591
## ProductSpin 3 -1.918
## ProductSpin 5 -2.095
## ProductSpin SP111-31 -2.612
## ProductStream 11-Y000na -1.613
## ProductStream 14-AX000nv -2.509
## ProductStream 14-AX001nv -2.856
## ProductStream 14-AX040wm -2.990
## ProductSurface Laptop NA
## ProductSwift 3 -2.173
## ProductSwift 7 -2.350
## ProductSwift SF114-31-P5HY -1.371
## ProductTecra A40-C-1DF 0.952
## ProductTecra A40-C-1E5 0.399
## ProductTecra A40-C-1KF 0.796
## ProductTecra A50-C-1ZV 0.309
## ProductTecra A50-C-218 0.501
## ProductTecra A50-C-21G -0.037
## ProductTecra A50-D-11D 0.409
## ProductTecra A50-D-11M -0.560
## ProductTecra X40-D-10G 1.624
## ProductTecra X40-D-10H 2.024
## ProductTecra X40-D-10Z 0.901
## ProductTecra Z40-C-12X 0.964
## ProductTecra Z40-C-12Z 1.280
## ProductTecra Z40-C-136 1.572
## ProductTecra Z40-C-161 1.653
## ProductTecra Z50-C-140 2.109
## ProductTecra Z50-C-144 -0.162
## ProductTecra Z50-D-10E NA
## ProductThinkpad 13 1.677
## ProductThinkPad 13 1.654
## ProductThinkpad E470 1.795
## ProductThinkPad E470 1.648
## ProductThinkPad E480 1.470
## ProductThinkpad E570 1.407
## ProductThinkPad E570 1.330
## ProductThinkPad E580 1.224
## ProductThinkPad L460 1.501
## ProductThinkPad L470 1.432
## ProductThinkpad L560 1.378
## ProductThinkPad L570 1.143
## ProductThinkPad P40 2.346
## ProductThinkpad P50 2.239
## ProductThinkpad P51 6.341
## ProductThinkPad P51 3.058
## ProductThinkpad P51s 1.577
## ProductThinkPad P51s 0.523
## ProductThinkPad P70 2.847
## ProductThinkpad P71 3.401
## ProductThinkpad T460 1.681
## ProductThinkPad T460 1.535
## ProductThinkpad T460p 0.978
## ProductThinkpad T460s 2.277
## ProductThinkPad T460s 2.505
## ProductThinkpad T470 1.661
## ProductThinkPad T470 1.628
## ProductThinkpad T470p 0.517
## ProductThinkPad T470p 1.825
## ProductThinkpad T470s 2.285
## ProductThinkPad T470s 2.185
## ProductThinkpad T560 1.350
## ProductThinkPad T560 1.404
## ProductThinkpad T570 0.601
## ProductThinkPad T570 1.539
## ProductThinkpad X1 2.975
## ProductThinkPad X1 2.945
## ProductThinkpad X260 1.467
## ProductThinkpad X270 1.990
## ProductThinkPad X270 1.949
## ProductThinkpad Yoga 2.399
## ProductThinkPad Yoga 2.107
## ProductTMX349-G2-M-50FS (i5-7200U/8GB/256GB/FHD/W10) -2.229
## ProductTP501UA-CJ131T (i5-7200U/8GB/1TB/W10) 0.016
## ProductTravelMate B -1.871
## ProductTravelMate B117-M -1.104
## ProductTravelMate P238-M -1.813
## ProductTravelMate P259-G2 -2.127
## ProductUX410UA-GV097T (i3-7100U/4GB/256GB/FHD/W10) 0.214
## ProductUX410UA-GV350T (i5-8250U/8GB/256GB/FHD/W10) 0.774
## ProductUX430UQ-GV209R (i7-7500U/8GB/256GB/GeForce 0.672
## ProductUX510UX-CN269T (i7-7500U/8GB/256GB 0.642
## ProductV110-15IAP (N3350/4GB/128GB/No 3.157
## ProductV110-15IAP (N3350/4GB/1TB/No 3.252
## ProductV110-15IKB (i5-7200U/4GB/128GB/W10) 2.577
## ProductV110-15ISK (3855U/4GB/500GB/W10) 2.202
## ProductV110-15ISK (i3-6006U/4GB/128GB/W10) 2.261
## ProductV110-15ISK (i3-6006U/4GB/1TB/No 2.645
## ProductV110-15ISK (i3-6006U/4GB/1TB/Radeon 2.898
## ProductV110-15ISK (i3-6006U/4GB/500GB/W10) 1.852
## ProductV110-15ISK (i5-6200U/4GB/128GB/W10) 2.657
## ProductV110-15ISK (i5-6200U/4GB/500GB/No 2.855
## ProductV110-15ISK (i5-6200U/4GB/500GB/W10) 2.269
## ProductV131 (X5-Z8350/4GB/32GB/FHD/W10) 0.967
## ProductV142 (X5-Z8350/2GB/32GB/W10) NA
## ProductV310-15IKB (i5-7200U/4GB/1TB/FHD/W10) 0.848
## ProductV310-15IKB (i5-7200U/4GB/1TB/No 2.247
## ProductV310-15IKB (i5-7200U/8GB/1TB 2.005
## ProductV310-15IKB (i7-7500U/4GB/1TB/FHD/W10) 1.676
## ProductV310-15ISK (i3-6006U/4GB/128GB/FHD/No 2.415
## ProductV310-15ISK (i3-6006U/4GB/1TB/FHD/W10) 2.256
## ProductV310-15ISK (i3-6006U/4GB/500GB/No 1.845
## ProductV310-15ISK (i5-6200U/4GB/1TB/FHD/No 2.489
## ProductV310-15ISK (i5-7200U/4GB/1TB/FHD/W10) 2.248
## ProductV310-15ISK (i5-7200U/8GB/1TB 1.970
## ProductV320-17ISK (i3-6006U/4GB/500GB/FHD/No 1.048
## ProductV330-15IKB (i3-7130U/4GB/128GB/FHD/W10) 1.663
## ProductV330-15IKB (i5-8250U/4GB/256GB/FHD/W10) 1.707
## ProductV330-15IKB (i5-8250U/4GB/500GB/FHD/W10) 1.579
## ProductV330-15IKB (i5-8250U/8GB/256GB/FHD/W10) 1.755
## ProductV330-15IKB (i7-8550U/8GB/256GB/FHD/W10) 1.604
## ProductV510-15IKB (i5-7200U/8GB/256GB/FHD/No 1.785
## ProductVivoBook E12 3.374
## ProductVivobook E200HA 0.538
## ProductVivoBook E201NA 0.502
## ProductVivoBook E403NA 2.311
## ProductVivoBook Flip 2.002
## ProductVivoBook L402NA 1.549
## ProductVivobook Max -3.174
## ProductVivoBook Max 2.188
## ProductVivoBook Pro -0.932
## ProductVivoBook S14 2.162
## ProductVivoBook S15 0.645
## ProductVivoBook X540YA-XX519T -1.872
## ProductVivobook X541UV-DM1217T 1.176
## ProductVostro 3559 -4.293
## ProductVostro 3568 -4.122
## ProductVostro 5370 -3.970
## ProductVostro 5468 -4.150
## ProductVostro 5471 -4.029
## ProductVostro 5568 -4.248
## ProductX505BP-BR019T (A9-9420/4GB/1TB/Radeon 0.521
## ProductX540SA-RBPDN09 (N3710/4GB/1TB/W10) 2.740
## ProductX540UA-DM186 (i3-6006U/4GB/1TB/FHD/Linux) 2.056
## ProductX541NA (N3350/4GB/1TB/FHD/W10) 2.146
## ProductX541NA (N3350/4GB/1TB/Linux) 2.951
## ProductX541NA (N4200/4GB/1TB/W10) 0.860
## ProductX541NA-GO020T (N3350/4GB/1TB/W10) 2.210
## ProductX541NA-GO121 (N4200/4GB/1TB/Linux) 1.108
## ProductX541NA-GO414T (N3350/8GB/1TB/W10) 1.236
## ProductX541NA-PD1003Y (N4200/4GB/500GB/W10) 2.824
## ProductX541UA-DM1897 (i3-6006U/4GB/256GB/FHD/Linux) 2.131
## ProductX541UV-DM1439T (i3-7100U/6GB/256GB/GeForce 0.824
## ProductX542UQ-DM117 (i3-7100U/8GB/1TB/GeForce 0.087
## ProductX542UQ-GO005 (i5-7200U/8GB/1TB/GeForce 1.560
## ProductX550VX-XX015D (i5-6300HQ/4GB/1TB/GeForce 0.549
## ProductX553SA-XX021T (N3050/4GB/500GB/W10) 1.131
## ProductX553SA-XX031T (N3050/4GB/500GB/W10) 1.232
## ProductX555BP-XX180T (A9-9420/4GB/1TB/Radeon 1.107
## ProductX555QG-DM242T (A10-9620P/4GB/1TB -3.002
## ProductX556UJ-XO044T (i7-6500U/4GB/500GB/GeForce 0.019
## ProductX705UV-BX074T (i3-6006U/4GB/1TB/GeForce 0.244
## ProductX751NV-TY001 (N4200/4GB/1TB/GeForce -0.526
## ProductX751NV-TY001T (N4200/4GB/1TB/GeForce -0.545
## ProductX751SV-TY001T (N3710/4GB/1TB/GeForce -0.738
## ProductXPS 13 -3.924
## ProductXPS 15 -6.642
## ProductYoga 11e -2.039
## ProductYoga 500-14IBD 1.904
## ProductYoga 500-14ISK 2.179
## ProductYoga 500-15ISK 1.571
## ProductYoga 510-15IKB 1.821
## ProductYoga 520-14IKB 1.683
## ProductYoga 700-11ISK -3.049
## ProductYoga 720-13IKB 1.682
## ProductYoga 720-15IKB 0.391
## ProductYoga 730 1.785
## ProductYoga 900-13ISK 1.146
## ProductYoga 900S-12ISK -3.030
## ProductYoga 910-13IKB 1.795
## ProductYoga 920-13IKB 1.955
## ProductYoga Book -2.308
## ProductZbook 15 -0.780
## ProductZBook 15 -0.389
## ProductZBook 15u -5.975
## ProductZbook 17 -2.906
## ProductZBook 17 -1.456
## ProductZBook Studio NA
## ProductZenbook 3 1.298
## ProductZenBook 3 1.579
## ProductZenbook Flip 1.425
## ProductZenBook Flip 0.619
## ProductZenBook Pro -0.342
## ProductZenBook UX305CA-UBM1 -3.470
## ProductZenBook UX310UA-FB485T 1.204
## ProductZenBook UX310UA-WB71 0.450
## ProductZenBook UX310UQ-GL026T 0.876
## ProductZenbook UX330UA-AH5Q 0.565
## ProductZenbook UX390UA 2.102
## ProductZenbook UX410UA-GV027T 0.364
## ProductZenBook UX410UA-GV183T 0.390
## ProductZenbook UX430UA 0.690
## ProductZenBook UX430UA 0.791
## ProductZenBook UX430UN 1.072
## ProductZenbook UX510UW-FI095T -0.201
## ProductZenBook UX510UX-CN211T 0.212
## ProductZenBook UX530UQ-PRO NA
## TypeNameGaming 0.004
## TypeNameNetbook -1.207
## TypeNameNotebook -0.427
## TypeNameUltrabook -0.153
## TypeNameWorkstation 0.875
## Inches 1.776
## ScreenResolution1440x900 -1.368
## ScreenResolution1600x900 -0.050
## ScreenResolution1920x1080 NA
## ScreenResolution2560x1440 1.155
## ScreenResolution4K Ultra HD / Touchscreen 3840x2160 2.745
## ScreenResolution4K Ultra HD 3840x2160 0.718
## ScreenResolutionFull HD / Touchscreen 1920x1080 -1.261
## ScreenResolutionFull HD 1920x1080 -1.094
## ScreenResolutionIPS Panel 1366x768 0.979
## ScreenResolutionIPS Panel 2560x1440 -0.840
## ScreenResolutionIPS Panel 4K Ultra HD / Touchscreen 3840x2160 1.449
## ScreenResolutionIPS Panel 4K Ultra HD 3840x2160 3.496
## ScreenResolutionIPS Panel Full HD / Touchscreen 1920x1080 -0.850
## ScreenResolutionIPS Panel Full HD 1366x768 -0.028
## ScreenResolutionIPS Panel Full HD 1920x1080 1.009
## ScreenResolutionIPS Panel Full HD 1920x1200 NA
## ScreenResolutionIPS Panel Full HD 2160x1440 NA
## ScreenResolutionIPS Panel Full HD 2560x1440 1.384
## ScreenResolutionIPS Panel Quad HD+ / Touchscreen 3200x1800 0.242
## ScreenResolutionIPS Panel Quad HD+ 2560x1440 -2.911
## ScreenResolutionIPS Panel Quad HD+ 3200x1800 NA
## ScreenResolutionIPS Panel Retina Display 2304x1440 NA
## ScreenResolutionIPS Panel Retina Display 2560x1600 -3.518
## ScreenResolutionIPS Panel Retina Display 2736x1824 NA
## ScreenResolutionIPS Panel Retina Display 2880x1800 NA
## ScreenResolutionIPS Panel Touchscreen / 4K Ultra HD 3840x2160 -0.247
## ScreenResolutionIPS Panel Touchscreen 1366x768 -0.145
## ScreenResolutionIPS Panel Touchscreen 1920x1200 NA
## ScreenResolutionIPS Panel Touchscreen 2400x1600 NA
## ScreenResolutionIPS Panel Touchscreen 2560x1440 -1.188
## ScreenResolutionQuad HD+ / Touchscreen 3200x1800 0.831
## ScreenResolutionQuad HD+ 3200x1800 -1.223
## ScreenResolutionTouchscreen / 4K Ultra HD 3840x2160 4.332
## ScreenResolutionTouchscreen / Full HD 1920x1080 0.144
## ScreenResolutionTouchscreen / Quad HD+ 3200x1800 0.335
## ScreenResolutionTouchscreen 1366x768 0.237
## ScreenResolutionTouchscreen 2256x1504 NA
## ScreenResolutionTouchscreen 2400x1600 NA
## ScreenResolutionTouchscreen 2560x1440 1.298
## CpuAMD A10-Series 9620P 2.5GHz -4.020
## CpuAMD A10-Series A10-9620P 2.5GHz NA
## CpuAMD A12-Series 9700P 2.5GHz NA
## CpuAMD A12-Series 9720P 2.7GHz -4.165
## CpuAMD A12-Series 9720P 3.6GHz NA
## CpuAMD A4-Series 7210 2.2GHz 1.212
## CpuAMD A6-Series 7310 2GHz NA
## CpuAMD A6-Series 9220 2.5GHz -2.580
## CpuAMD A6-Series 9220 2.9GHz 1.078
## CpuAMD A6-Series A6-9220 2.5GHz NA
## CpuAMD A8-Series 7410 2.2GHz NA
## CpuAMD A9-Series 9410 2.9GHz NA
## CpuAMD A9-Series 9420 2.9GHz 0.188
## CpuAMD A9-Series 9420 3GHz -3.760
## CpuAMD A9-Series A9-9420 3GHz NA
## CpuAMD E-Series 6110 1.5GHz NA
## CpuAMD E-Series 7110 1.8GHz NA
## CpuAMD E-Series 9000 2.2GHz 1.770
## CpuAMD E-Series 9000e 1.5GHz NA
## CpuAMD E-Series E2-6110 1.5GHz NA
## CpuAMD E-Series E2-9000 2.2GHz 1.219
## CpuAMD E-Series E2-9000e 1.5GHz NA
## CpuAMD FX 8800P 2.1GHz NA
## CpuAMD FX 9830P 3GHz NA
## CpuAMD Ryzen 1600 3.2GHz -2.601
## CpuAMD Ryzen 1700 3GHz -2.668
## CpuIntel Atom x5-Z8300 1.44GHz NA
## CpuIntel Atom x5-Z8350 1.44GHz NA
## CpuIntel Atom X5-Z8350 1.44GHz NA
## CpuIntel Atom x5-Z8550 1.44GHz NA
## CpuIntel Atom Z8350 1.92GHz NA
## CpuIntel Celeron Dual Core 3205U 1.5GHz NA
## CpuIntel Celeron Dual Core 3855U 1.6GHz -2.609
## CpuIntel Celeron Dual Core N3050 1.6GHz -3.060
## CpuIntel Celeron Dual Core N3060 1.60GHz -2.140
## CpuIntel Celeron Dual Core N3060 1.6GHz -2.656
## CpuIntel Celeron Dual Core N3350 1.1GHz -3.106
## CpuIntel Celeron Dual Core N3350 2.0GHz NA
## CpuIntel Celeron Dual Core N3350 2GHz -2.693
## CpuIntel Celeron Quad Core N3160 1.6GHz NA
## CpuIntel Celeron Quad Core N3450 1.1GHz NA
## CpuIntel Celeron Quad Core N3710 1.6GHz NA
## CpuIntel Core i3 6006U 2.0GHz -3.883
## CpuIntel Core i3 6006U 2.2GHz -3.295
## CpuIntel Core i3 6006U 2GHz -4.107
## CpuIntel Core i3 6100U 2.1GHz -3.361
## CpuIntel Core i3 6100U 2.3GHz -4.303
## CpuIntel Core i3 7100U 2.4GHz -4.343
## CpuIntel Core i3 7130U 2.7GHz -4.311
## CpuIntel Core i5 1.3GHz -0.102
## CpuIntel Core i5 1.6GHz NA
## CpuIntel Core i5 1.8GHz NA
## CpuIntel Core i5 2.0GHz -1.421
## CpuIntel Core i5 2.3GHz -2.640
## CpuIntel Core i5 2.9GHz -0.125
## CpuIntel Core i5 3.1GHz NA
## CpuIntel Core i5 6200U 2.3GHz -4.781
## CpuIntel Core i5 6260U 1.8GHz -3.832
## CpuIntel Core i5 6300HQ 2.3GHz -3.276
## CpuIntel Core i5 6300U 2.4GHz -4.819
## CpuIntel Core i5 6440HQ 2.6GHz NA
## CpuIntel Core i5 7200U 2.50GHz -4.597
## CpuIntel Core i5 7200U 2.5GHz -4.820
## CpuIntel Core i5 7200U 2.70GHz -4.678
## CpuIntel Core i5 7200U 2.7GHz -4.737
## CpuIntel Core i5 7300HQ 2.5GHz -4.047
## CpuIntel Core i5 7300U 2.6GHz -4.904
## CpuIntel Core i5 7440HQ 2.8GHz -4.693
## CpuIntel Core i5 7500U 2.7GHz -4.646
## CpuIntel Core i5 7Y54 1.2GHz -3.901
## CpuIntel Core i5 7Y57 1.2GHz -4.693
## CpuIntel Core i5 8250U 1.6GHz -4.756
## CpuIntel Core i7 2.2GHz -1.827
## CpuIntel Core i7 2.7GHz -1.757
## CpuIntel Core i7 2.8GHz -1.741
## CpuIntel Core i7 2.9GHz NA
## CpuIntel Core i7 6500U 2.50GHz -4.034
## CpuIntel Core i7 6500U 2.5GHz -4.555
## CpuIntel Core i7 6560U 2.2GHz -4.562
## CpuIntel Core i7 6600U 2.6GHz -4.667
## CpuIntel Core i7 6700HQ 2.6GHz -3.642
## CpuIntel Core i7 6820HK 2.7GHz -7.010
## CpuIntel Core i7 6820HQ 2.7GHz -4.364
## CpuIntel Core i7 6920HQ 2.9GHz NA
## CpuIntel Core i7 7500U 2.5GHz NA
## CpuIntel Core i7 7500U 2.7GHz -4.919
## CpuIntel Core i7 7560U 2.4GHz -5.102
## CpuIntel Core i7 7600U 2.8GHz -4.773
## CpuIntel Core i7 7660U 2.5GHz -4.123
## CpuIntel Core i7 7700HQ 2.7GHz -4.259
## CpuIntel Core i7 7700HQ 2.8GHz -4.034
## CpuIntel Core i7 7820HK 2.9GHz -3.283
## CpuIntel Core i7 7820HQ 2.9GHz -11.645
## CpuIntel Core i7 7Y75 1.3GHz -4.230
## CpuIntel Core i7 8550U 1.8GHz -4.877
## CpuIntel Core i7 8650U 1.9GHz -4.677
## CpuIntel Core M 1.1GHz 1.112
## CpuIntel Core M 1.2GHz -1.356
## CpuIntel Core M 6Y30 0.9GHz NA
## CpuIntel Core M 6Y54 1.1GHz NA
## CpuIntel Core M 6Y75 1.2GHz NA
## CpuIntel Core M 7Y30 1.0GHz NA
## CpuIntel Core M m3 1.2GHz NA
## CpuIntel Core M M3-6Y30 0.9GHz 1.693
## CpuIntel Core M m3-7Y30 2.2GHz -4.184
## CpuIntel Core M m7-6Y75 1.2GHz NA
## CpuIntel Core M M7-6Y75 1.2GHz NA
## CpuIntel Pentium Dual Core 4405U 2.1GHz -2.743
## CpuIntel Pentium Dual Core 4405Y 1.5GHz NA
## CpuIntel Pentium Dual Core N4200 1.1GHz NA
## CpuIntel Pentium Quad Core N3700 1.6GHz -3.489
## CpuIntel Pentium Quad Core N3710 1.6GHz -2.933
## CpuIntel Pentium Quad Core N4200 1.1GHz -3.210
## CpuIntel Xeon E3-1505M V6 3GHz -4.396
## CpuIntel Xeon E3-1535M v5 2.9GHz NA
## CpuIntel Xeon E3-1535M v6 3.1GHz NA
## CpuSamsung Cortex A72&A53 2.0GHz NA
## Ram 2.408
## Memory1.0TB Hybrid -1.357
## Memory128GB Flash Storage -1.785
## Memory128GB HDD NA
## Memory128GB SSD -1.600
## Memory128GB SSD + 1TB HDD -1.638
## Memory128GB SSD + 2TB HDD -1.687
## Memory16GB Flash Storage -1.851
## Memory16GB SSD NA
## Memory180GB SSD -1.617
## Memory1TB HDD -1.402
## Memory1TB HDD + 1TB HDD NA
## Memory1TB SSD 0.111
## Memory1TB SSD + 1TB HDD 1.051
## Memory240GB SSD NA
## Memory256GB Flash Storage -2.279
## Memory256GB SSD -1.660
## Memory256GB SSD + 1.0TB Hybrid 4.774
## Memory256GB SSD + 1TB HDD -1.763
## Memory256GB SSD + 256GB SSD -0.360
## Memory256GB SSD + 2TB HDD -1.857
## Memory256GB SSD + 500GB HDD -0.024
## Memory2TB HDD -1.747
## Memory32GB Flash Storage -3.048
## Memory32GB HDD NA
## Memory32GB SSD NA
## Memory500GB HDD -1.265
## Memory508GB Hybrid -1.401
## Memory512GB Flash Storage NA
## Memory512GB SSD -1.322
## Memory512GB SSD + 1.0TB Hybrid 6.039
## Memory512GB SSD + 1TB HDD -1.616
## Memory512GB SSD + 256GB SSD NA
## Memory512GB SSD + 2TB HDD -1.153
## Memory512GB SSD + 512GB SSD -0.754
## Memory64GB Flash Storage NA
## Memory64GB Flash Storage + 1TB HDD NA
## Memory64GB SSD NA
## Memory8GB SSD NA
## GpuAMD FirePro W4190M 0.889
## GpuAMD FirePro W5130M NA
## GpuAMD FirePro W6150M -6.962
## GpuAMD R17M-M1-70 NA
## GpuAMD R4 Graphics 2.490
## GpuAMD Radeon 520 0.531
## GpuAMD Radeon 530 0.706
## GpuAMD Radeon 540 0.860
## GpuAMD Radeon Pro 455 NA
## GpuAMD Radeon Pro 555 NA
## GpuAMD Radeon Pro 560 NA
## GpuAMD Radeon R2 NA
## GpuAMD Radeon R2 Graphics NA
## GpuAMD Radeon R3 NA
## GpuAMD Radeon R4 NA
## GpuAMD Radeon R4 Graphics NA
## GpuAMD Radeon R5 NA
## GpuAMD Radeon R5 430 NA
## GpuAMD Radeon R5 520 NA
## GpuAMD Radeon R5 M315 0.665
## GpuAMD Radeon R5 M330 NA
## GpuAMD Radeon R5 M420 1.565
## GpuAMD Radeon R5 M420X 0.383
## GpuAMD Radeon R5 M430 0.247
## GpuAMD Radeon R7 2.455
## GpuAMD Radeon R7 Graphics NA
## GpuAMD Radeon R7 M360 NA
## GpuAMD Radeon R7 M365X 0.217
## GpuAMD Radeon R7 M440 1.290
## GpuAMD Radeon R7 M445 1.005
## GpuAMD Radeon R7 M460 NA
## GpuAMD Radeon R7 M465 0.962
## GpuAMD Radeon R9 M385 NA
## GpuAMD Radeon RX 540 NA
## GpuAMD Radeon RX 550 0.759
## GpuAMD Radeon RX 560 NA
## GpuAMD Radeon RX 580 NA
## GpuARM Mali T860 MP4 NA
## GpuIntel Graphics 620 0.493
## GpuIntel HD Graphics 1.184
## GpuIntel HD Graphics 400 0.960
## GpuIntel HD Graphics 405 0.258
## GpuIntel HD Graphics 500 NA
## GpuIntel HD Graphics 505 NA
## GpuIntel HD Graphics 510 NA
## GpuIntel HD Graphics 515 0.121
## GpuIntel HD Graphics 520 1.438
## GpuIntel HD Graphics 530 -0.096
## GpuIntel HD Graphics 5300 NA
## GpuIntel HD Graphics 540 NA
## GpuIntel HD Graphics 6000 NA
## GpuIntel HD Graphics 615 NA
## GpuIntel HD Graphics 620 1.947
## GpuIntel HD Graphics 620 1.328
## GpuIntel HD Graphics 630 1.448
## GpuIntel Iris Graphics 540 NA
## GpuIntel Iris Graphics 550 NA
## GpuIntel Iris Plus Graphics 640 2.031
## GpuIntel Iris Plus Graphics 650 NA
## GpuIntel Iris Pro Graphics NA
## GpuIntel UHD Graphics 620 1.411
## GpuNvidia GeForce 150MX 1.147
## GpuNvidia GeForce 920 0.953
## GpuNvidia GeForce 920M 1.149
## GpuNvidia GeForce 920MX 1.201
## GpuNvidia GeForce 920MX 0.246
## GpuNvidia GeForce 930M -0.047
## GpuNvidia GeForce 930MX 1.812
## GpuNvidia GeForce 930MX 1.019
## GpuNvidia GeForce 940M NA
## GpuNvidia GeForce 940MX 1.469
## GpuNvidia GeForce 960M 2.295
## GpuNvidia GeForce GT 940MX 0.547
## GpuNvidia GeForce GTX 1050 1.780
## GpuNvidia GeForce GTX 1050 Ti 1.726
## GpuNvidia GeForce GTX 1050M 1.740
## GpuNvidia GeForce GTX 1050Ti 1.314
## GpuNvidia GeForce GTX 1060 1.690
## GpuNvidia GeForce GTX 1070 3.846
## GpuNvidia GeForce GTX 1070M 2.492
## GpuNvidia GeForce GTX 1080 8.514
## GpuNvidia GeForce GTX 930MX NA
## GpuNvidia GeForce GTX 940M 1.016
## GpuNvidia GeForce GTX 940MX 1.251
## GpuNvidia GeForce GTX 950M NA
## GpuNvidia GeForce GTX 960 -1.221
## GpuNvidia GeForce GTX 960<U+039C> -0.152
## GpuNvidia GeForce GTX 960M NA
## GpuNvidia GeForce GTX 965M NA
## GpuNvidia GeForce GTX 970M NA
## GpuNvidia GeForce GTX 980 NA
## GpuNvidia GeForce GTX 980M NA
## GpuNvidia GeForce GTX1050 Ti NA
## GpuNvidia GeForce GTX1060 NA
## GpuNvidia GeForce GTX1080 NA
## GpuNvidia GeForce MX130 -1.196
## GpuNvidia GeForce MX150 NA
## GpuNvidia GTX 980 SLI NA
## GpuNvidia Quadro 3000M NA
## GpuNvidia Quadro M1000M -8.903
## GpuNvidia Quadro M1200 -8.767
## GpuNvidia Quadro M2000M NA
## GpuNvidia Quadro M2200 -7.445
## GpuNvidia Quadro M2200M NA
## GpuNvidia Quadro M3000M NA
## GpuNvidia Quadro M500M NA
## GpuNvidia Quadro M520M NA
## GpuNvidia Quadro M620 NA
## GpuNvidia Quadro M620M NA
## OpSysChrome OS NA
## OpSysLinux -1.907
## OpSysMac OS X NA
## OpSysmacOS NA
## OpSysNo OS -1.665
## OpSysWindows 10 -2.618
## OpSysWindows 10 S NA
## OpSysWindows 7 -1.833
## Weight 1.785
## Frequenza NA
## Risoluzione1440x900 NA
## Risoluzione1600x900 NA
## Risoluzione1920x1080 NA
## Risoluzione1920x1200 NA
## Risoluzione2160x1440 NA
## Risoluzione2256x1504 NA
## Risoluzione2304x1440 NA
## Risoluzione2400x1600 NA
## Risoluzione2560x1440 NA
## Risoluzione2560x1600 NA
## Risoluzione2736x1824 NA
## Risoluzione2880x1800 NA
## Risoluzione3200x1800 NA
## Risoluzione3840x2160 NA
## Pixel NA
## SolidStateDiskTrue NA
## LogPrice 36.525
## Pr(>|t|)
## (Intercept) 1.39e-15 ***
## X 0.301704
## CompanyApple 0.004068 **
## CompanyAsus 0.019629 *
## CompanyChuwi 0.005608 **
## CompanyDell 0.097189 .
## CompanyFujitsu 0.022838 *
## CompanyGoogle 0.036085 *
## CompanyHP 0.412853
## CompanyHuawei 0.031354 *
## CompanyLenovo 0.016949 *
## CompanyLG 0.087654 .
## CompanyMediacom 0.001040 **
## CompanyMicrosoft 0.009682 **
## CompanyMSI 0.001827 **
## CompanyRazer 0.000639 ***
## CompanySamsung 0.001087 **
## CompanyToshiba 0.014807 *
## CompanyVero 0.040071 *
## CompanyXiaomi 0.021874 *
## Product14-am079na (N3710/8GB/2TB/W10) 0.003834 **
## Product15-AC110nv (i7-6500U/6GB/1TB/Radeon 0.000223 ***
## Product15-AY023na (N3710/8GB/2TB/W10) 0.002280 **
## Product15-ay047nv (i3-6006U/6GB/1TB/Radeon 0.000846 ***
## Product15-BA015wm (E2-7110/4GB/500GB/W10) 0.001111 **
## Product15-ba043na (A12-9700P/8GB/2TB/W10) 2.27e-05 ***
## Product15-bs002nv (i3-6006U/4GB/128GB/FHD/W10) 0.002259 **
## Product15-bs005nv (i3-6006U/4GB/1TB 0.002178 **
## Product15-bs011nv (i7-7500U/4GB/500GB/Radeon 0.000603 ***
## Product15-bs012nv (i7-7500U/8GB/1TB/Radeon 0.000668 ***
## Product15-bs015dx (i5-7200U/8GB/1TB/W10) 0.000942 ***
## Product15-bs017nv (i7-7500U/8GB/256GB/Radeon 0.001160 **
## Product15-bs018nq (i3-6006U/4GB/500GB/FHD/No 0.003716 **
## Product15-bs023nv (i3-6006U/4GB/1TB/FHD/W10) 0.000991 ***
## Product15-bs024nv (i5-7200U/8GB/128GB/W10) 0.001014 **
## Product15-bs025nv (i5-7200U/8GB/256GB/W10) 0.001344 **
## Product15-BS026nv (i5-7200U/8GB/256GB/Radeon 0.002094 **
## Product15-BS028nv (i3-6006U/4GB/1TB/Radeon 0.002043 **
## Product15-bs053od (i7-7500U/6GB/1TB/W10) 0.001130 **
## Product15-bs078cl (i7-7500U/8GB/2TB/W10) 0.001219 **
## Product15-BS078nr (i7-7500U/8GB/1TB/W10) 0.000774 ***
## Product15-BS101nv (i7-8550U/8GB/256GB/FHD/W10) 0.000714 ***
## Product15-BS103nv (i5-8250U/6GB/256GB/Radeon 0.002244 **
## Product15-bs190od (i5-8250U/4GB/1TB/W10) 0.002015 **
## Product15-bw000nv (E2-9000e/4GB/500GB/Radeon 0.000374 ***
## Product15-bw002nv (A6-9220/4GB/256GB/Radeon 0.000139 ***
## Product15-bw003nv (A9-Series-9420/4GB/256GB/FHD/W10) 0.001574 **
## Product15-BW004nv (A9-9420/4GB/256GB/Radeon 0.001998 **
## Product15-bw007nv (A10-9620P/6GB/128GB/Radeon 2.84e-05 ***
## Product15-bw009nv (A12-9720P/6GB/1TB/Radeon 0.002667 **
## Product15-bw011nv (A6-9220/4GB/1TB/FHD/W10) 0.001426 **
## Product15-BW037na (A9-9420/4GB/1TB/Radeon 0.001681 **
## Product15-BW091ND (A9-9420/6GB/1TB 2.73e-05 ***
## Product15-BW094nd (A6-9220/8GB/128GB/W10) 0.000112 ***
## Product15-cb003na (i5-7300HQ/8GB/1TB 3.44e-10 ***
## Product15-cd005nv (A9-9420/6GB/256GB/Radeon 1.58e-05 ***
## Product15-ra044nv (N3060/4GB/500GB/W10) 0.000465 ***
## Product15-rb013nv (E2-9000e/4GB/500GB/W10) 0.000484 ***
## Product17-ak001nv (A6-9220/4GB/500GB/Radeon 0.000377 ***
## Product17-ak002nv (A10-9620P/6GB/2TB/Radeon 0.000329 ***
## Product17-AK091ND (A9-9420/8GB/1TB/W10) 0.000218 ***
## Product17-bs000nv I3 6.05e-05 ***
## Product17-bs001nv (i5-7200U/6GB/2TB/Radeon 0.000488 ***
## Product17-BS037cl (i3-6006U/8GB/1TB/W10) 0.000224 ***
## Product17-BS092ND (i3-6006U/8GB/256GB/W10) 5.28e-05 ***
## Product17-X047na (i3-6006U/8GB/1TB/W10) 9.78e-05 ***
## Product17-Y002nv (A10-9600P/6GB/2TB/Radeon 1.13e-05 ***
## Product250 G4 0.001773 **
## Product250 G5 0.000399 ***
## Product250 G6 0.001271 **
## Product255 G6 0.001499 **
## Product320-15ISK (i3-6006U/4GB/1TB/GeForce 0.018837 *
## ProductA541NA-GO342 (N3350/4GB/500GB/Linux) 7.50e-05 ***
## ProductA715-71G-59DH (i5-7300HQ/8GB/1TB/GeForce 0.000772 ***
## ProductAlienware 15 1.13e-08 ***
## ProductAlienware 17 1.02e-08 ***
## ProductAspire 1 0.007198 **
## ProductAspire 3 0.074754 .
## ProductAspire 5 0.035830 *
## ProductAspire 7 0.000379 ***
## ProductAspire A315-31 0.113191
## ProductAspire A315-51 0.058475 .
## ProductAspire A515-51G 0.037898 *
## ProductAspire A515-51G-32MX 0.105574
## ProductAspire A515-51G-37JS 0.101682
## ProductAspire A515-51G-59QF 0.052000 .
## ProductAspire A517-51G 0.017767 *
## ProductAspire A715-71G 0.000444 ***
## ProductAspire E5-475 0.099462 .
## ProductAspire E5-575 0.045698 *
## ProductAspire E5-576G 0.034802 *
## ProductAspire E5-774G 0.007300 **
## ProductAspire ES1-523 0.004399 **
## ProductAspire ES1-531 0.050467 .
## ProductAspire ES1-533 0.061875 .
## ProductAspire ES1-572 0.063720 .
## ProductAspire F5-573G 0.044960 *
## ProductAspire F5-573G-510L 0.026932 *
## ProductAspire R7 0.048115 *
## ProductAspire VX5-591G 0.000551 ***
## ProductB51-80 (i5-6200U/8GB/1008GB/Radeon 0.071517 .
## ProductB51-80 (i5-6200U/8GB/1TB/Radeon 0.034475 *
## ProductB51-80 (i7-6500U/4GB/1008GB/FHD/W7) 0.271286
## ProductB51-80 (i7-6500U/8GB/1008GB/Radeon 0.187411
## ProductBlade Pro 6.63e-05 ***
## ProductBlade Stealth NA
## ProductC740-C9QX (3205U/2GB/32GB/Chrome 0.029765 *
## ProductCB5-132T-C9KK (N3160/4GB/32GB/Chrome 0.001539 **
## ProductChromebook 11 0.003421 **
## ProductChromebook 13 1.10e-05 ***
## ProductChromebook 14 0.003130 **
## ProductChromebook 15 0.003658 **
## ProductChromebook 3 0.009706 **
## ProductChromebook C202SA 0.007804 **
## ProductChromebook C731-C78G 0.015894 *
## ProductChromebook C738T-C2EJ 0.005298 **
## ProductChromebook C910-C2ST 0.004674 **
## ProductChromebook CB5-571-C1DZ 0.009683 **
## ProductChromebook Flip 6.18e-06 ***
## ProductChromebook N23 0.146302
## ProductChromebook Plus 0.042769 *
## ProductChromebook X360 1.83e-05 ***
## ProductE402WA-GA007T (E2-6110/4GB/64GB/W10 0.031398 *
## ProductE402WA-GA010T (E2-6110/2GB/32GB/W10) 0.719919
## ProductE5 774G 0.012152 *
## ProductEliteBook 1030 2.35e-05 ***
## ProductElitebook 1040 0.000730 ***
## ProductEliteBook 1040 0.000432 ***
## ProductElitebook 820 0.000634 ***
## ProductEliteBook 820 0.000776 ***
## ProductElitebook 840 0.000411 ***
## ProductEliteBook 840 0.000255 ***
## ProductElitebook 850 0.000118 ***
## ProductEliteBook 850 0.000168 ***
## ProductElitebook Folio 0.000191 ***
## ProductEliteBook Folio 4.62e-05 ***
## ProductEliteBook x360 0.004656 **
## ProductENVY - 0.000264 ***
## ProductEnvy 13-AB002nv 0.000174 ***
## ProductEnvy 13-AB020nr 0.000364 ***
## ProductEnvy 13-AB077cl 0.000284 ***
## ProductEnvy 13-AD007nv 0.001062 **
## ProductEnvy 13-ad009n 0.000585 ***
## ProductEnvy 17-U275cl 3.00e-05 ***
## ProductEnvy x360 0.000273 ***
## ProductES1-523-84K7 (A8-7410/8GB/256GB/FHD/W10) 0.003827 **
## ProductExtensa EX2540 0.044542 *
## ProductExtensa EX2540-58KR 0.043113 *
## ProductF756UX-T4201D (i7-7500U/8GB/128GB 0.995374
## ProductFlex 5 0.108341
## ProductFlexBook Edge 9.17e-05 ***
## ProductFX502VM-AS73 (i7-7700HQ/16GB/1TB 0.663924
## ProductFX502VM-DM105T (i7-6700HQ/8GB/1TB/GeForce 0.467519
## ProductFX502VM-DM560T (i7-7700HQ/8GB/1TB 0.833032
## ProductFX503VD-E4022T (i7-7700HQ/8GB/1TB/GeForce 0.277621
## ProductFX503VM-E4007T (i7-7700HQ/16GB/1TB 0.294124
## ProductFX550IK-DM018T (FX-9830P/8GB/1TB/Radeon 0.000208 ***
## ProductFX553VD-DM627T (i5-7300HQ/8GB/1TB 0.439993
## ProductFX553VD-FY647T (i7-7700HQ/8GB/256GB/GeForce 0.307523
## ProductFX753VD-GC007T (i7-7700HQ/8GB/1TB 0.170424
## ProductFX753VD-GC071T (i7-7700HQ/8GB/1TB/GeForce 0.123948
## ProductFX753VD-GC086T (i5-7300HQ/8GB/1TB 0.197556
## ProductFX753VD-GC461T (i7-7700HQ/16GB/1TB 0.239824
## ProductFX753VE-GC093 (i7-7700HQ/12GB/1TB/GeForce 0.093041 .
## ProductFX753VE-GC155T (i7-7700HQ/16GB/1TB 0.872853
## ProductG701VO-IH74K (i7-6820HK/32GB/2x 0.091462 .
## ProductG752VY-GC162T (i7-6700HQ/16GB/1TB 0.386729
## ProductGE62 Apache 0.249746
## ProductGE63VR 7RE 0.789951
## ProductGE63VR 7RF 0.460714
## ProductGE72 Apache 0.327926
## ProductGE72MVR 7RG 0.565029
## ProductGE72VR 6RF 0.772892
## ProductGE72VR Apache 0.848428
## ProductGE73VR 7RE 0.804026
## ProductGE73VR 7RF 0.677099
## ProductGL553VE-FY082T (i7-7700HQ/8GB/1TB 0.312516
## ProductGL62 6QF 0.242651
## ProductGL62M (i5-7300HQ/8GB/1TB 0.782767
## ProductGL62M 7RD 0.745785
## ProductGL62M 7RDX 0.779508
## ProductGL62M 7REX 0.818539
## ProductGL72M 7RDX 0.438153
## ProductGL72M 7REX 0.559001
## ProductGP62 7RDX 0.703406
## ProductGP62M 7RDX 0.724039
## ProductGP62M 7REX 0.792799
## ProductGP62M Leopard 0.765902
## ProductGP62MVR 6RF 0.776795
## ProductGP72M 7REX 0.673121
## ProductGP72MVR 7RFX 0.644592
## ProductGP72VR Leopard 0.725393
## ProductGram 14Z970 0.619019
## ProductGram 15Z970 0.654726
## ProductGram 15Z975 NA
## ProductGS40 Phantom 0.038602 *
## ProductGS43VR 7RE 0.314636
## ProductGS60 Ghost 0.016148 *
## ProductGS63VR 6RF 0.272174
## ProductGS63VR 7RF 0.117453
## ProductGS63VR 7RG 0.853286
## ProductGS70 Stealth 0.241285
## ProductGS73VR 7RF 0.416291
## ProductGS73VR 7RG 0.764586
## ProductGS73VR Stealth 0.377555
## ProductGT62VR 6RD 0.588600
## ProductGT62VR 7RE 0.884717
## ProductGT72S Dominator 0.001427 **
## ProductGT72VR Dominator 0.983749
## ProductGT73EVR 7RE 0.794701
## ProductGT73VR Titan 0.659971
## ProductGT80S 6QE 5.47e-06 ***
## ProductGT80S 6QF-074US 0.169129
## ProductGV62 7RD-1686NL 0.792280
## ProductGV62M 7RD 0.824635
## ProductIdeaPad 100S-14IBR 0.012002 *
## ProductIdeaPad 110-15IBR 0.336490
## ProductIdeaPad 110-15ISK 0.041576 *
## ProductIdeaPad 110-17ACL 0.001762 **
## ProductIdeaPad 120S-14IAP 0.011864 *
## ProductIdeaPad 300-17ISK 0.450649
## ProductIdeaPad 310-15ABR 0.000345 ***
## ProductIdeaPad 310-15IKB 0.052371 .
## ProductIdeapad 310-15ISK 0.013557 *
## ProductIdeaPad 310-15ISK 0.071008 .
## ProductIdeaPad 320-14IAP 0.002721 **
## ProductIdeaPad 320-15ABR 6.22e-06 ***
## ProductIdeaPad 320-15AST 0.079588 .
## ProductIdeapad 320-15IAP 0.072198 .
## ProductIdeaPad 320-15IAP 0.007867 **
## ProductIdeaPad 320-15IKB 0.085465 .
## ProductIdeapad 320-15IKBN 0.028629 *
## ProductIdeaPad 320-15IKBN 0.023703 *
## ProductIdeapad 320-15IKBR 0.085807 .
## ProductIdeapad 320-15ISK 0.074268 .
## ProductIdeaPad 320-15ISK 0.026419 *
## ProductIdeaPad 320-17IKB 0.141992
## ProductIdeaPad 320-17IKBR 0.146528
## ProductIdeaPad 320-17ISK 0.133009
## ProductIdeaPad 320s-14IKB 0.062793 .
## ProductIdeaPad 500-15ISK 0.219977
## ProductIdeaPad 510-15IKB 0.077901 .
## ProductIdeaPad 510-15ISK 0.121993
## ProductIdeapad 510S-13IKB 0.032760 *
## ProductIdeaPad 510s-14IKB 0.076463 .
## ProductIdeapad 520-15IKBR 0.117943
## ProductIdeaPad 520s-14IKB 0.033435 *
## ProductIdeaPad 520S-14IKB 0.121302
## ProductIdeapad 700-15ISK 0.341316
## ProductIdeaPad 720S-13IKB 0.102610
## ProductIdeaPad 720S-14IKB 0.115132
## ProductIdeaPad Y700-15ACZ 2.82e-08 ***
## ProductIdeaPad Y700-15ISK 0.225718
## ProductIdeaPad Y900-17ISK 0.122969
## ProductIdeaPad Y910-17ISK 0.010595 *
## ProductInspiron 3168 0.000231 ***
## ProductInspiron 3179 2.06e-05 ***
## ProductInspiron 3552 0.000319 ***
## ProductInspiron 3567 0.000163 ***
## ProductInspiron 3576 0.000108 ***
## ProductInspiron 5368 0.000208 ***
## ProductInspiron 5370 0.000118 ***
## ProductInspiron 5378 9.12e-05 ***
## ProductInspiron 5379 0.000109 ***
## ProductInspiron 5567 3.82e-05 ***
## ProductInspiron 5568 1.72e-05 ***
## ProductInspiron 5570 5.48e-05 ***
## ProductInspiron 5577 2.19e-11 ***
## ProductInspiron 5578 4.35e-05 ***
## ProductInspiron 5579 2.85e-05 ***
## ProductInspiron 5767 1.07e-05 ***
## ProductInspiron 5770 1.21e-05 ***
## ProductInspiron 7378 6.48e-05 ***
## ProductInspiron 7559 9.81e-07 ***
## ProductInspiron 7560 3.76e-05 ***
## ProductInspiron 7567 2.53e-11 ***
## ProductInspiron 7570 1.31e-05 ***
## ProductInspiron 7577 1.56e-11 ***
## ProductInspiron 7579 1.49e-05 ***
## ProductInspiron 7773 2.02e-10 ***
## ProductInspiron 7779 3.55e-05 ***
## ProductInsprion 5767 5.49e-06 ***
## ProductK146 (N3350/4GB/32GB/W10) 0.001801 **
## ProductK147 (N3350/4GB/32GB/FHD/W10) 0.027068 *
## ProductK556UR-DM621T (i7-7500U/8GB/256GB/GeForce 0.230158
## ProductK756UX-T4340T (i5-7200U/8GB/500GB 0.178275
## ProductL403NA-GA013TS (N3350/4GB/32GB/W10) 0.015413 *
## ProductL502NA-GO052T (N3350/4GB/128GB/W10) 0.182279
## ProductLapBook 12.3 0.033113 *
## ProductLapbook 15,6 0.934589
## ProductLapBook 15.6" NA
## ProductLaptop MSI 1.04e-05 ***
## ProductLatitude 3180 8.53e-05 ***
## ProductLatitude 3380 1.87e-05 ***
## ProductLatitude 3480 5.52e-05 ***
## ProductLatitude 3570 0.000214 ***
## ProductLatitude 3580 2.20e-05 ***
## ProductLatitude 5289 0.000297 ***
## ProductLatitude 5480 2.10e-05 ***
## ProductLatitude 5490 4.39e-05 ***
## ProductLatitude 5580 1.19e-05 ***
## ProductLatitude 5590 1.30e-05 ***
## ProductLatitude 7280 0.000200 ***
## ProductLatitude 7390 0.000473 ***
## ProductLatitude 7480 8.25e-05 ***
## ProductLatitude E5270 1.61e-05 ***
## ProductLatitude E5470 4.23e-05 ***
## ProductLatitude E5570 3.11e-05 ***
## ProductLatitude E7270 0.000367 ***
## ProductLatitude E7470 9.71e-05 ***
## ProductLegion Y520-15IKBN 0.886224
## ProductLegion Y720-15IKB 0.846706
## ProductLenovo IdeaPad 0.007721 **
## ProductLeopard GP72M 0.557753
## ProductLifeBook A556 0.225938
## ProductLifebook A557 0.938787
## ProductLifeBook A557 NA
## ProductMacBook 12" 0.000289 ***
## ProductMacbook Air 0.110535
## ProductMacBook Air 0.058654 .
## ProductMacBook Pro NA
## ProductMateBook X NA
## ProductMi Notebook NA
## ProductN23 (N3060/4GB/128GB/W10) 0.097568 .
## ProductN42-20 Chromebook 0.631230
## ProductNitro 5 0.000371 ***
## ProductNitro AN515-51 0.000613 ***
## ProductNoteb Pav 0.000124 ***
## ProductNotebook 9 0.122908
## ProductNotebook Odyssey NA
## ProductOmen - 1.61e-10 ***
## ProductOmen 15-AX205na 3.67e-10 ***
## ProductOmen 15-ce006nv 2.36e-09 ***
## ProductOmen 15-ce007nv 1.75e-10 ***
## ProductOmen 17-an006nv 3.27e-10 ***
## ProductOmen 17-AN010nv 1.28e-10 ***
## ProductOmen 17-an012dx 1.09e-05 ***
## ProductOmen 17-W006na 1.42e-06 ***
## ProductOmen 17-w207nv 1.26e-10 ***
## ProductOmen 17-w212nv 4.17e-11 ***
## ProductOmen 17-W295 7.14e-11 ***
## ProductPavilion 14-BK001nv 0.001290 **
## ProductPavilion 15-AW003nv 2.39e-05 ***
## ProductPavilion 15-BC000nv 7.19e-06 ***
## ProductPavilion 15-cb003nv 3.69e-10 ***
## ProductPavilion 15-CK000nv 0.000525 ***
## ProductPavilion Power 2.97e-10 ***
## ProductPavilion x360 0.000226 ***
## ProductPavilion X360 0.000550 ***
## ProductPixelbook (Core NA
## ProductPL60 7RD NA
## ProductPortege A30-C-1CZ 0.223800
## ProductPortege X20W-D-10V 0.016507 *
## ProductPortege X30-D-10J 0.072314 .
## ProductPortege X30-D-10K 0.000570 ***
## ProductPortege X30-D-10L 5.15e-08 ***
## ProductPortege X30-D-10V 0.096440 .
## ProductPortege X30-D-10X 0.153078
## ProductPortege Z30-C-16H 0.128800
## ProductPortege Z30-C-16J 0.147752
## ProductPortégé Z30-C-16K 0.055511 .
## ProductPortege Z30-C-16L 0.325586
## ProductPortege Z30-C-16P 0.256141
## ProductPortege Z30-C-16Z 0.044582 *
## ProductPortégé Z30-C-188 0.218697
## ProductPortege Z30-C-1CV 0.283223
## ProductPortege Z30-C-1CW 0.188825
## ProductPortege Z30T-C-133 0.086897 .
## ProductPrecision 3510 1.76e-13 ***
## ProductPrecision 3520 4.92e-11 ***
## ProductPrecision 5520 0.738339
## ProductPrecision 7520 0.102870
## ProductPrecision 7720 0.320999
## ProductPrecision M5520 0.981378
## ProductPredator 17 0.000418 ***
## ProductPredator G9-793 0.002057 **
## ProductPro P2540UA-AB51 0.904108
## ProductPro P2540UA-XO0192R 0.764898
## ProductPro P2540UA-XO0198T 0.014300 *
## ProductPro P2540UA-XS51 0.736637
## ProductProbook 430 0.000185 ***
## ProductProBook 430 0.000356 ***
## ProductProbook 440 0.000215 ***
## ProductProBook 440 0.000202 ***
## ProductProbook 450 0.000123 ***
## ProductProBook 450 9.65e-05 ***
## ProductProbook 470 4.80e-05 ***
## ProductProBook 470 3.19e-05 ***
## ProductProbook 640 0.000163 ***
## ProductProBook 640 0.000136 ***
## ProductProbook 650 7.16e-05 ***
## ProductProBook 650 7.37e-05 ***
## ProductProBook x360 0.000252 ***
## ProductQ304UA-BHI5T11 (i5-7200U/6GB/1TB/FHD/W10) 0.073743 .
## ProductQ524UQ-BHI7T15 (i7-7500U/12GB/2TB/GeForce 0.436185
## ProductQ534UX-BHI7T19 (i7-7500U/16GB/2TB 0.941422
## ProductR417NA-RS01 (N3350/4GB/32GB/W10) 0.035483 *
## ProductR558UA-DM966T (i5-7200U/8GB/128GB/FHD/W10) 0.697738
## ProductROG G701VI 0.293005
## ProductRog G701VIK-BA060T 2.21e-05 ***
## ProductROG G701VO 1.36e-12 ***
## ProductROG G703VI-E5062T 0.023006 *
## ProductRog G752VL-GC088D 0.283276
## ProductRog G752VL-UH71T 0.579527
## ProductRog G752VS-BA171T 0.312089
## ProductROG G752VSK-GC493T 0.918669
## ProductRog G752VT-GC073T 0.888350
## ProductRog G752VY-GC229T 0.600720
## ProductRog GL502VM-DS74 0.794333
## ProductRog GL502VS 0.626283
## ProductRog GL552VW-CN470T 0.997741
## ProductRog GL552VW-DM201T 0.742007
## ProductRog GL553VE-DS74 0.643199
## ProductROG GL553VE-FY022 0.117507
## ProductRog GL553VE-FY052T 0.398216
## ProductRog GL702VM-GC017T 0.608274
## ProductRog GL702VM-GC354T 0.353869
## ProductRog GL702VS-BA023T 0.456572
## ProductRog GL702VS-GC095T 0.162016
## ProductROG GL703VD-GC028T 0.196622
## ProductRog GL752VW-T4308T 0.842113
## ProductRog GL753VD-GC042T 0.132287
## ProductRog GL753VD-GC082T 0.246791
## ProductRog GL753VE-DS74 0.397708
## ProductRog GL753VE-GC070T 0.279254
## ProductRog Strix 0.785577
## ProductROG Strix 0.483712
## ProductROG Zephyrus 0.000686 ***
## ProductSatellite Pro 0.322514
## ProductSmartBook 130 0.001292 **
## ProductSmartBook 140 0.000176 ***
## ProductSmartBook 141 0.021230 *
## ProductSmartbook 142 0.232531
## ProductSmartBook Edge NA
## ProductSP315-51 (i7-7500U/12GB/1TB/FHD/W10) 0.036770 *
## ProductSP714-51 (i7-7Y75/8GB/256GB/FHD/W10) 0.029733 *
## ProductSpectre 13-V100nv 0.000302 ***
## ProductSpectre 13-V111dx 0.000743 ***
## ProductSpectre Pro 0.000894 ***
## ProductSpectre x360 0.000448 ***
## ProductSpectre X360 0.000362 ***
## ProductSpin 3 0.055715 .
## ProductSpin 5 0.036700 *
## ProductSpin SP111-31 0.009278 **
## ProductStream 11-Y000na 0.107466
## ProductStream 14-AX000nv 0.012430 *
## ProductStream 14-AX001nv 0.004477 **
## ProductStream 14-AX040wm 0.002933 **
## ProductSurface Laptop NA
## ProductSwift 3 0.030239 *
## ProductSwift 7 0.019156 *
## ProductSwift SF114-31-P5HY 0.170979
## ProductTecra A40-C-1DF 0.341319
## ProductTecra A40-C-1E5 0.690046
## ProductTecra A40-C-1KF 0.426318
## ProductTecra A50-C-1ZV 0.757635
## ProductTecra A50-C-218 0.616723
## ProductTecra A50-C-21G 0.970284
## ProductTecra A50-D-11D 0.682617
## ProductTecra A50-D-11M 0.576077
## ProductTecra X40-D-10G 0.105049
## ProductTecra X40-D-10H 0.043468 *
## ProductTecra X40-D-10Z 0.367963
## ProductTecra Z40-C-12X 0.335597
## ProductTecra Z40-C-12Z 0.201199
## ProductTecra Z40-C-136 0.116547
## ProductTecra Z40-C-161 0.099056 .
## ProductTecra Z50-C-140 0.035488 *
## ProductTecra Z50-C-144 0.871177
## ProductTecra Z50-D-10E NA
## ProductThinkpad 13 0.094135 .
## ProductThinkPad 13 0.098689 .
## ProductThinkpad E470 0.073249 .
## ProductThinkPad E470 0.100037
## ProductThinkPad E480 0.142310
## ProductThinkpad E570 0.160180
## ProductThinkPad E570 0.184191
## ProductThinkPad E580 0.221424
## ProductThinkPad L460 0.133918
## ProductThinkPad L470 0.152766
## ProductThinkpad L560 0.168907
## ProductThinkPad L570 0.253677
## ProductThinkPad P40 0.019371 *
## ProductThinkpad P50 0.025582 *
## ProductThinkpad P51 5.21e-10 ***
## ProductThinkPad P51 0.002352 **
## ProductThinkpad P51s 0.115395
## ProductThinkPad P51s 0.601333
## ProductThinkPad P70 0.004596 **
## ProductThinkpad P71 0.000726 ***
## ProductThinkpad T460 0.093356 .
## ProductThinkPad T460 0.125451
## ProductThinkpad T460p 0.328782
## ProductThinkpad T460s 0.023245 *
## ProductThinkPad T460s 0.012566 *
## ProductThinkpad T470 0.097370 .
## ProductThinkPad T470 0.104223
## ProductThinkpad T470p 0.605197
## ProductThinkPad T470p 0.068590 .
## ProductThinkpad T470s 0.022743 *
## ProductThinkPad T470s 0.029362 *
## ProductThinkpad T560 0.177659
## ProductThinkPad T560 0.160925
## ProductThinkpad T570 0.548148
## ProductThinkPad T570 0.124554
## ProductThinkpad X1 0.003079 **
## ProductThinkPad X1 0.003380 **
## ProductThinkpad X260 0.143115
## ProductThinkpad X270 0.047123 *
## ProductThinkPad X270 0.051874 .
## ProductThinkpad Yoga 0.016816 *
## ProductThinkPad Yoga 0.035604 *
## ProductTMX349-G2-M-50FS (i5-7200U/8GB/256GB/FHD/W10) 0.026256 *
## ProductTP501UA-CJ131T (i5-7200U/8GB/1TB/W10) 0.987365
## ProductTravelMate B 0.061882 .
## ProductTravelMate B117-M 0.270307
## ProductTravelMate P238-M 0.070524 .
## ProductTravelMate P259-G2 0.033964 *
## ProductUX410UA-GV097T (i3-7100U/4GB/256GB/FHD/W10) 0.830564
## ProductUX410UA-GV350T (i5-8250U/8GB/256GB/FHD/W10) 0.439073
## ProductUX430UQ-GV209R (i7-7500U/8GB/256GB/GeForce 0.502154
## ProductUX510UX-CN269T (i7-7500U/8GB/256GB 0.521347
## ProductV110-15IAP (N3350/4GB/128GB/No 0.001694 **
## ProductV110-15IAP (N3350/4GB/1TB/No 0.001226 **
## ProductV110-15IKB (i5-7200U/4GB/128GB/W10) 0.010260 *
## ProductV110-15ISK (3855U/4GB/500GB/W10) 0.028123 *
## ProductV110-15ISK (i3-6006U/4GB/128GB/W10) 0.024226 *
## ProductV110-15ISK (i3-6006U/4GB/1TB/No 0.008438 **
## ProductV110-15ISK (i3-6006U/4GB/1TB/Radeon 0.003925 **
## ProductV110-15ISK (i3-6006U/4GB/500GB/W10) 0.064622 .
## ProductV110-15ISK (i5-6200U/4GB/128GB/W10) 0.008142 **
## ProductV110-15ISK (i5-6200U/4GB/500GB/No 0.004481 **
## ProductV110-15ISK (i5-6200U/4GB/500GB/W10) 0.023716 *
## ProductV131 (X5-Z8350/4GB/32GB/FHD/W10) 0.334206
## ProductV142 (X5-Z8350/2GB/32GB/W10) NA
## ProductV310-15IKB (i5-7200U/4GB/1TB/FHD/W10) 0.396846
## ProductV310-15IKB (i5-7200U/4GB/1TB/No 0.025074 *
## ProductV310-15IKB (i5-7200U/8GB/1TB 0.045477 *
## ProductV310-15IKB (i7-7500U/4GB/1TB/FHD/W10) 0.094411 .
## ProductV310-15ISK (i3-6006U/4GB/128GB/FHD/No 0.016091 *
## ProductV310-15ISK (i3-6006U/4GB/1TB/FHD/W10) 0.024509 *
## ProductV310-15ISK (i3-6006U/4GB/500GB/No 0.065681 .
## ProductV310-15ISK (i5-6200U/4GB/1TB/FHD/No 0.013125 *
## ProductV310-15ISK (i5-7200U/4GB/1TB/FHD/W10) 0.024996 *
## ProductV310-15ISK (i5-7200U/8GB/1TB 0.049457 *
## ProductV320-17ISK (i3-6006U/4GB/500GB/FHD/No 0.295173
## ProductV330-15IKB (i3-7130U/4GB/128GB/FHD/W10) 0.096860 .
## ProductV330-15IKB (i5-8250U/4GB/256GB/FHD/W10) 0.088551 .
## ProductV330-15IKB (i5-8250U/4GB/500GB/FHD/W10) 0.114879
## ProductV330-15IKB (i5-8250U/8GB/256GB/FHD/W10) 0.079917 .
## ProductV330-15IKB (i7-8550U/8GB/256GB/FHD/W10) 0.109388
## ProductV510-15IKB (i5-7200U/8GB/256GB/FHD/No 0.074890 .
## ProductVivoBook E12 0.000799 ***
## ProductVivobook E200HA 0.590538
## ProductVivoBook E201NA 0.615808
## ProductVivoBook E403NA 0.021240 *
## ProductVivoBook Flip 0.045821 *
## ProductVivoBook L402NA 0.122074
## ProductVivobook Max 0.001596 **
## ProductVivoBook Max 0.029134 *
## ProductVivoBook Pro 0.351799
## ProductVivoBook S14 0.031116 *
## ProductVivoBook S15 0.519150
## ProductVivoBook X540YA-XX519T 0.061792 .
## ProductVivobook X541UV-DM1217T 0.240175
## ProductVostro 3559 2.13e-05 ***
## ProductVostro 3568 4.42e-05 ***
## ProductVostro 5370 8.28e-05 ***
## ProductVostro 5468 3.92e-05 ***
## ProductVostro 5471 6.51e-05 ***
## ProductVostro 5568 2.58e-05 ***
## ProductX505BP-BR019T (A9-9420/4GB/1TB/Radeon 0.602508
## ProductX540SA-RBPDN09 (N3710/4GB/1TB/W10) 0.006371 **
## ProductX540UA-DM186 (i3-6006U/4GB/1TB/FHD/Linux) 0.040336 *
## ProductX541NA (N3350/4GB/1TB/FHD/W10) 0.032361 *
## ProductX541NA (N3350/4GB/1TB/Linux) 0.003316 **
## ProductX541NA (N4200/4GB/1TB/W10) 0.390469
## ProductX541NA-GO020T (N3350/4GB/1TB/W10) 0.027547 *
## ProductX541NA-GO121 (N4200/4GB/1TB/Linux) 0.268405
## ProductX541NA-GO414T (N3350/8GB/1TB/W10) 0.216957
## ProductX541NA-PD1003Y (N4200/4GB/500GB/W10) 0.004937 **
## ProductX541UA-DM1897 (i3-6006U/4GB/256GB/FHD/Linux) 0.033599 *
## ProductX541UV-DM1439T (i3-7100U/6GB/256GB/GeForce 0.410145
## ProductX542UQ-DM117 (i3-7100U/8GB/1TB/GeForce 0.931054
## ProductX542UQ-GO005 (i5-7200U/8GB/1TB/GeForce 0.119318
## ProductX550VX-XX015D (i5-6300HQ/4GB/1TB/GeForce 0.583057
## ProductX553SA-XX021T (N3050/4GB/500GB/W10) 0.258635
## ProductX553SA-XX031T (N3050/4GB/500GB/W10) 0.218558
## ProductX555BP-XX180T (A9-9420/4GB/1TB/Radeon 0.268649
## ProductX555QG-DM242T (A10-9620P/4GB/1TB 0.002816 **
## ProductX556UJ-XO044T (i7-6500U/4GB/500GB/GeForce 0.984988
## ProductX705UV-BX074T (i3-6006U/4GB/1TB/GeForce 0.807564
## ProductX751NV-TY001 (N4200/4GB/1TB/GeForce 0.598839
## ProductX751NV-TY001T (N4200/4GB/1TB/GeForce 0.586114
## ProductX751SV-TY001T (N3710/4GB/1TB/GeForce 0.460593
## ProductXPS 13 9.97e-05 ***
## ProductXPS 15 8.30e-11 ***
## ProductYoga 11e 0.041981 *
## ProductYoga 500-14IBD 0.057510 .
## ProductYoga 500-14ISK 0.029794 *
## ProductYoga 500-15ISK 0.116904
## ProductYoga 510-15IKB 0.069199 .
## ProductYoga 520-14IKB 0.093102 .
## ProductYoga 700-11ISK 0.002420 **
## ProductYoga 720-13IKB 0.093243 .
## ProductYoga 720-15IKB 0.696299
## ProductYoga 730 0.074927 .
## ProductYoga 900-13ISK 0.252321
## ProductYoga 900S-12ISK 0.002580 **
## ProductYoga 910-13IKB 0.073310 .
## ProductYoga 920-13IKB 0.051146 .
## ProductYoga Book 0.021404 *
## ProductZbook 15 0.435795
## ProductZBook 15 0.697234
## ProductZBook 15u 4.45e-09 ***
## ProductZbook 17 0.003831 **
## ProductZBook 17 0.145915
## ProductZBook Studio NA
## ProductZenbook 3 0.195048
## ProductZenBook 3 0.114924
## ProductZenbook Flip 0.154659
## ProductZenBook Flip 0.536132
## ProductZenBook Pro 0.732697
## ProductZenBook UX305CA-UBM1 0.000567 ***
## ProductZenBook UX310UA-FB485T 0.229141
## ProductZenBook UX310UA-WB71 0.653035
## ProductZenBook UX310UQ-GL026T 0.381242
## ProductZenbook UX330UA-AH5Q 0.572073
## ProductZenbook UX390UA 0.036079 *
## ProductZenbook UX410UA-GV027T 0.715974
## ProductZenBook UX410UA-GV183T 0.697052
## ProductZenbook UX430UA 0.490265
## ProductZenBook UX430UA 0.429389
## ProductZenBook UX430UN 0.284346
## ProductZenbook UX510UW-FI095T 0.840807
## ProductZenBook UX510UX-CN211T 0.831808
## ProductZenBook UX530UQ-PRO NA
## TypeNameGaming 0.997033
## TypeNameNetbook 0.227882
## TypeNameNotebook 0.669294
## TypeNameUltrabook 0.878246
## TypeNameWorkstation 0.382133
## Inches 0.076312 .
## ScreenResolution1440x900 0.172099
## ScreenResolution1600x900 0.960209
## ScreenResolution1920x1080 NA
## ScreenResolution2560x1440 0.248743
## ScreenResolution4K Ultra HD / Touchscreen 3840x2160 0.006267 **
## ScreenResolution4K Ultra HD 3840x2160 0.472927
## ScreenResolutionFull HD / Touchscreen 1920x1080 0.207989
## ScreenResolutionFull HD 1920x1080 0.274445
## ScreenResolutionIPS Panel 1366x768 0.328208
## ScreenResolutionIPS Panel 2560x1440 0.401376
## ScreenResolutionIPS Panel 4K Ultra HD / Touchscreen 3840x2160 0.148100
## ScreenResolutionIPS Panel 4K Ultra HD 3840x2160 0.000516 ***
## ScreenResolutionIPS Panel Full HD / Touchscreen 1920x1080 0.395823
## ScreenResolutionIPS Panel Full HD 1366x768 0.977441
## ScreenResolutionIPS Panel Full HD 1920x1080 0.313476
## ScreenResolutionIPS Panel Full HD 1920x1200 NA
## ScreenResolutionIPS Panel Full HD 2160x1440 NA
## ScreenResolutionIPS Panel Full HD 2560x1440 0.166862
## ScreenResolutionIPS Panel Quad HD+ / Touchscreen 3200x1800 0.808999
## ScreenResolutionIPS Panel Quad HD+ 2560x1440 0.003773 **
## ScreenResolutionIPS Panel Quad HD+ 3200x1800 NA
## ScreenResolutionIPS Panel Retina Display 2304x1440 NA
## ScreenResolutionIPS Panel Retina Display 2560x1600 0.000476 ***
## ScreenResolutionIPS Panel Retina Display 2736x1824 NA
## ScreenResolutionIPS Panel Retina Display 2880x1800 NA
## ScreenResolutionIPS Panel Touchscreen / 4K Ultra HD 3840x2160 0.805192
## ScreenResolutionIPS Panel Touchscreen 1366x768 0.884918
## ScreenResolutionIPS Panel Touchscreen 1920x1200 NA
## ScreenResolutionIPS Panel Touchscreen 2400x1600 NA
## ScreenResolutionIPS Panel Touchscreen 2560x1440 0.235440
## ScreenResolutionQuad HD+ / Touchscreen 3200x1800 0.406418
## ScreenResolutionQuad HD+ 3200x1800 0.221938
## ScreenResolutionTouchscreen / 4K Ultra HD 3840x2160 1.80e-05 ***
## ScreenResolutionTouchscreen / Full HD 1920x1080 0.885289
## ScreenResolutionTouchscreen / Quad HD+ 3200x1800 0.737892
## ScreenResolutionTouchscreen 1366x768 0.812866
## ScreenResolutionTouchscreen 2256x1504 NA
## ScreenResolutionTouchscreen 2400x1600 NA
## ScreenResolutionTouchscreen 2560x1440 0.194791
## CpuAMD A10-Series 9620P 2.5GHz 6.75e-05 ***
## CpuAMD A10-Series A10-9620P 2.5GHz NA
## CpuAMD A12-Series 9700P 2.5GHz NA
## CpuAMD A12-Series 9720P 2.7GHz 3.68e-05 ***
## CpuAMD A12-Series 9720P 3.6GHz NA
## CpuAMD A4-Series 7210 2.2GHz 0.226023
## CpuAMD A6-Series 7310 2GHz NA
## CpuAMD A6-Series 9220 2.5GHz 0.010165 *
## CpuAMD A6-Series 9220 2.9GHz 0.281345
## CpuAMD A6-Series A6-9220 2.5GHz NA
## CpuAMD A8-Series 7410 2.2GHz NA
## CpuAMD A9-Series 9410 2.9GHz NA
## CpuAMD A9-Series 9420 2.9GHz 0.850764
## CpuAMD A9-Series 9420 3GHz 0.000191 ***
## CpuAMD A9-Series A9-9420 3GHz NA
## CpuAMD E-Series 6110 1.5GHz NA
## CpuAMD E-Series 7110 1.8GHz NA
## CpuAMD E-Series 9000 2.2GHz 0.077411 .
## CpuAMD E-Series 9000e 1.5GHz NA
## CpuAMD E-Series E2-6110 1.5GHz NA
## CpuAMD E-Series E2-9000 2.2GHz 0.223550
## CpuAMD E-Series E2-9000e 1.5GHz NA
## CpuAMD FX 8800P 2.1GHz NA
## CpuAMD FX 9830P 3GHz NA
## CpuAMD Ryzen 1600 3.2GHz 0.009592 **
## CpuAMD Ryzen 1700 3GHz 0.007895 **
## CpuIntel Atom x5-Z8300 1.44GHz NA
## CpuIntel Atom x5-Z8350 1.44GHz NA
## CpuIntel Atom X5-Z8350 1.44GHz NA
## CpuIntel Atom x5-Z8550 1.44GHz NA
## CpuIntel Atom Z8350 1.92GHz NA
## CpuIntel Celeron Dual Core 3205U 1.5GHz NA
## CpuIntel Celeron Dual Core 3855U 1.6GHz 0.009363 **
## CpuIntel Celeron Dual Core N3050 1.6GHz 0.002336 **
## CpuIntel Celeron Dual Core N3060 1.60GHz 0.032853 *
## CpuIntel Celeron Dual Core N3060 1.6GHz 0.008170 **
## CpuIntel Celeron Dual Core N3350 1.1GHz 0.002008 **
## CpuIntel Celeron Dual Core N3350 2.0GHz NA
## CpuIntel Celeron Dual Core N3350 2GHz 0.007319 **
## CpuIntel Celeron Quad Core N3160 1.6GHz NA
## CpuIntel Celeron Quad Core N3450 1.1GHz NA
## CpuIntel Celeron Quad Core N3710 1.6GHz NA
## CpuIntel Core i3 6006U 2.0GHz 0.000117 ***
## CpuIntel Core i3 6006U 2.2GHz 0.001057 **
## CpuIntel Core i3 6006U 2GHz 4.70e-05 ***
## CpuIntel Core i3 6100U 2.1GHz 0.000839 ***
## CpuIntel Core i3 6100U 2.3GHz 2.03e-05 ***
## CpuIntel Core i3 7100U 2.4GHz 1.71e-05 ***
## CpuIntel Core i3 7130U 2.7GHz 1.97e-05 ***
## CpuIntel Core i5 1.3GHz 0.918404
## CpuIntel Core i5 1.6GHz NA
## CpuIntel Core i5 1.8GHz NA
## CpuIntel Core i5 2.0GHz 0.155959
## CpuIntel Core i5 2.3GHz 0.008556 **
## CpuIntel Core i5 2.9GHz 0.900353
## CpuIntel Core i5 3.1GHz NA
## CpuIntel Core i5 6200U 2.3GHz 2.31e-06 ***
## CpuIntel Core i5 6260U 1.8GHz 0.000144 ***
## CpuIntel Core i5 6300HQ 2.3GHz 0.001128 **
## CpuIntel Core i5 6300U 2.4GHz 1.93e-06 ***
## CpuIntel Core i5 6440HQ 2.6GHz NA
## CpuIntel Core i5 7200U 2.50GHz 5.47e-06 ***
## CpuIntel Core i5 7200U 2.5GHz 1.92e-06 ***
## CpuIntel Core i5 7200U 2.70GHz 3.77e-06 ***
## CpuIntel Core i5 7200U 2.7GHz 2.86e-06 ***
## CpuIntel Core i5 7300HQ 2.5GHz 6.04e-05 ***
## CpuIntel Core i5 7300U 2.6GHz 1.28e-06 ***
## CpuIntel Core i5 7440HQ 2.8GHz 3.50e-06 ***
## CpuIntel Core i5 7500U 2.7GHz 4.36e-06 ***
## CpuIntel Core i5 7Y54 1.2GHz 0.000109 ***
## CpuIntel Core i5 7Y57 1.2GHz 3.51e-06 ***
## CpuIntel Core i5 8250U 1.6GHz 2.61e-06 ***
## CpuIntel Core i7 2.2GHz 0.068280 .
## CpuIntel Core i7 2.7GHz 0.079482 .
## CpuIntel Core i7 2.8GHz 0.082265 .
## CpuIntel Core i7 2.9GHz NA
## CpuIntel Core i7 6500U 2.50GHz 6.37e-05 ***
## CpuIntel Core i7 6500U 2.5GHz 6.62e-06 ***
## CpuIntel Core i7 6560U 2.2GHz 6.42e-06 ***
## CpuIntel Core i7 6600U 2.6GHz 3.96e-06 ***
## CpuIntel Core i7 6700HQ 2.6GHz 0.000300 ***
## CpuIntel Core i7 6820HK 2.7GHz 7.98e-12 ***
## CpuIntel Core i7 6820HQ 2.7GHz 1.56e-05 ***
## CpuIntel Core i7 6920HQ 2.9GHz NA
## CpuIntel Core i7 7500U 2.5GHz NA
## CpuIntel Core i7 7500U 2.7GHz 1.19e-06 ***
## CpuIntel Core i7 7560U 2.4GHz 4.83e-07 ***
## CpuIntel Core i7 7600U 2.8GHz 2.40e-06 ***
## CpuIntel Core i7 7660U 2.5GHz 4.40e-05 ***
## CpuIntel Core i7 7700HQ 2.7GHz 2.47e-05 ***
## CpuIntel Core i7 7700HQ 2.8GHz 6.37e-05 ***
## CpuIntel Core i7 7820HK 2.9GHz 0.001100 **
## CpuIntel Core i7 7820HQ 2.9GHz < 2e-16 ***
## CpuIntel Core i7 7Y75 1.3GHz 2.79e-05 ***
## CpuIntel Core i7 8550U 1.8GHz 1.46e-06 ***
## CpuIntel Core i7 8650U 1.9GHz 3.77e-06 ***
## CpuIntel Core M 1.1GHz 0.266520
## CpuIntel Core M 1.2GHz 0.175690
## CpuIntel Core M 6Y30 0.9GHz NA
## CpuIntel Core M 6Y54 1.1GHz NA
## CpuIntel Core M 6Y75 1.2GHz NA
## CpuIntel Core M 7Y30 1.0GHz NA
## CpuIntel Core M m3 1.2GHz NA
## CpuIntel Core M M3-6Y30 0.9GHz 0.091142 .
## CpuIntel Core M m3-7Y30 2.2GHz 3.39e-05 ***
## CpuIntel Core M m7-6Y75 1.2GHz NA
## CpuIntel Core M M7-6Y75 1.2GHz NA
## CpuIntel Pentium Dual Core 4405U 2.1GHz 0.006304 **
## CpuIntel Pentium Dual Core 4405Y 1.5GHz NA
## CpuIntel Pentium Dual Core N4200 1.1GHz NA
## CpuIntel Pentium Quad Core N3700 1.6GHz 0.000529 ***
## CpuIntel Pentium Quad Core N3710 1.6GHz 0.003517 **
## CpuIntel Pentium Quad Core N4200 1.1GHz 0.001417 **
## CpuIntel Xeon E3-1505M V6 3GHz 1.36e-05 ***
## CpuIntel Xeon E3-1535M v5 2.9GHz NA
## CpuIntel Xeon E3-1535M v6 3.1GHz NA
## CpuSamsung Cortex A72&A53 2.0GHz NA
## Ram 0.016392 *
## Memory1.0TB Hybrid 0.175552
## Memory128GB Flash Storage 0.074823 .
## Memory128GB HDD NA
## Memory128GB SSD 0.110277
## Memory128GB SSD + 1TB HDD 0.102021
## Memory128GB SSD + 2TB HDD 0.092156 .
## Memory16GB Flash Storage 0.064826 .
## Memory16GB SSD NA
## Memory180GB SSD 0.106441
## Memory1TB HDD 0.161434
## Memory1TB HDD + 1TB HDD NA
## Memory1TB SSD 0.911315
## Memory1TB SSD + 1TB HDD 0.293881
## Memory240GB SSD NA
## Memory256GB Flash Storage 0.023094 *
## Memory256GB SSD 0.097495 .
## Memory256GB SSD + 1.0TB Hybrid 2.39e-06 ***
## Memory256GB SSD + 1TB HDD 0.078514 .
## Memory256GB SSD + 256GB SSD 0.719049
## Memory256GB SSD + 2TB HDD 0.063946 .
## Memory256GB SSD + 500GB HDD 0.980841
## Memory2TB HDD 0.081235 .
## Memory32GB Flash Storage 0.002429 **
## Memory32GB HDD NA
## Memory32GB SSD NA
## Memory500GB HDD 0.206415
## Memory508GB Hybrid 0.161967
## Memory512GB Flash Storage NA
## Memory512GB SSD 0.186916
## Memory512GB SSD + 1.0TB Hybrid 3.07e-09 ***
## Memory512GB SSD + 1TB HDD 0.106811
## Memory512GB SSD + 256GB SSD NA
## Memory512GB SSD + 2TB HDD 0.249502
## Memory512GB SSD + 512GB SSD 0.451305
## Memory64GB Flash Storage NA
## Memory64GB Flash Storage + 1TB HDD NA
## Memory64GB SSD NA
## Memory8GB SSD NA
## GpuAMD FirePro W4190M 0.374402
## GpuAMD FirePro W5130M NA
## GpuAMD FirePro W6150M 1.09e-11 ***
## GpuAMD R17M-M1-70 NA
## GpuAMD R4 Graphics 0.013117 *
## GpuAMD Radeon 520 0.595643
## GpuAMD Radeon 530 0.480749
## GpuAMD Radeon 540 0.390136
## GpuAMD Radeon Pro 455 NA
## GpuAMD Radeon Pro 555 NA
## GpuAMD Radeon Pro 560 NA
## GpuAMD Radeon R2 NA
## GpuAMD Radeon R2 Graphics NA
## GpuAMD Radeon R3 NA
## GpuAMD Radeon R4 NA
## GpuAMD Radeon R4 Graphics NA
## GpuAMD Radeon R5 NA
## GpuAMD Radeon R5 430 NA
## GpuAMD Radeon R5 520 NA
## GpuAMD Radeon R5 M315 0.506544
## GpuAMD Radeon R5 M330 NA
## GpuAMD Radeon R5 M420 0.118260
## GpuAMD Radeon R5 M420X 0.701728
## GpuAMD Radeon R5 M430 0.805231
## GpuAMD Radeon R7 0.014437 *
## GpuAMD Radeon R7 Graphics NA
## GpuAMD Radeon R7 M360 NA
## GpuAMD Radeon R7 M365X 0.828437
## GpuAMD Radeon R7 M440 0.197580
## GpuAMD Radeon R7 M445 0.315627
## GpuAMD Radeon R7 M460 NA
## GpuAMD Radeon R7 M465 0.336351
## GpuAMD Radeon R9 M385 NA
## GpuAMD Radeon RX 540 NA
## GpuAMD Radeon RX 550 0.448484
## GpuAMD Radeon RX 560 NA
## GpuAMD Radeon RX 580 NA
## GpuARM Mali T860 MP4 NA
## GpuIntel Graphics 620 0.622259
## GpuIntel HD Graphics 0.236942
## GpuIntel HD Graphics 400 0.337613
## GpuIntel HD Graphics 405 0.796292
## GpuIntel HD Graphics 500 NA
## GpuIntel HD Graphics 505 NA
## GpuIntel HD Graphics 510 NA
## GpuIntel HD Graphics 515 0.903763
## GpuIntel HD Graphics 520 0.151208
## GpuIntel HD Graphics 530 0.923326
## GpuIntel HD Graphics 5300 NA
## GpuIntel HD Graphics 540 NA
## GpuIntel HD Graphics 6000 NA
## GpuIntel HD Graphics 615 NA
## GpuIntel HD Graphics 620 0.052119 .
## GpuIntel HD Graphics 620 0.184892
## GpuIntel HD Graphics 630 0.148378
## GpuIntel Iris Graphics 540 NA
## GpuIntel Iris Graphics 550 NA
## GpuIntel Iris Plus Graphics 640 0.042766 *
## GpuIntel Iris Plus Graphics 650 NA
## GpuIntel Iris Pro Graphics NA
## GpuIntel UHD Graphics 620 0.158938
## GpuNvidia GeForce 150MX 0.251801
## GpuNvidia GeForce 920 0.341308
## GpuNvidia GeForce 920M 0.251173
## GpuNvidia GeForce 920MX 0.230394
## GpuNvidia GeForce 920MX 0.806030
## GpuNvidia GeForce 930M 0.962149
## GpuNvidia GeForce 930MX 0.070530 .
## GpuNvidia GeForce 930MX 0.308769
## GpuNvidia GeForce 940M NA
## GpuNvidia GeForce 940MX 0.142465
## GpuNvidia GeForce 960M 0.022173 *
## GpuNvidia GeForce GT 940MX 0.584680
## GpuNvidia GeForce GTX 1050 0.075774 .
## GpuNvidia GeForce GTX 1050 Ti 0.085037 .
## GpuNvidia GeForce GTX 1050M 0.082410 .
## GpuNvidia GeForce GTX 1050Ti 0.189413
## GpuNvidia GeForce GTX 1060 0.091607 .
## GpuNvidia GeForce GTX 1070 0.000136 ***
## GpuNvidia GeForce GTX 1070M 0.013038 *
## GpuNvidia GeForce GTX 1080 < 2e-16 ***
## GpuNvidia GeForce GTX 930MX NA
## GpuNvidia GeForce GTX 940M 0.310173
## GpuNvidia GeForce GTX 940MX 0.211646
## GpuNvidia GeForce GTX 950M NA
## GpuNvidia GeForce GTX 960 0.222760
## GpuNvidia GeForce GTX 960<U+039C> 0.879256
## GpuNvidia GeForce GTX 960M NA
## GpuNvidia GeForce GTX 965M NA
## GpuNvidia GeForce GTX 970M NA
## GpuNvidia GeForce GTX 980 NA
## GpuNvidia GeForce GTX 980M NA
## GpuNvidia GeForce GTX1050 Ti NA
## GpuNvidia GeForce GTX1060 NA
## GpuNvidia GeForce GTX1080 NA
## GpuNvidia GeForce MX130 0.232356
## GpuNvidia GeForce MX150 NA
## GpuNvidia GTX 980 SLI NA
## GpuNvidia Quadro 3000M NA
## GpuNvidia Quadro M1000M < 2e-16 ***
## GpuNvidia Quadro M1200 < 2e-16 ***
## GpuNvidia Quadro M2000M NA
## GpuNvidia Quadro M2200 4.42e-13 ***
## GpuNvidia Quadro M2200M NA
## GpuNvidia Quadro M3000M NA
## GpuNvidia Quadro M500M NA
## GpuNvidia Quadro M520M NA
## GpuNvidia Quadro M620 NA
## GpuNvidia Quadro M620M NA
## OpSysChrome OS NA
## OpSysLinux 0.057094 .
## OpSysMac OS X NA
## OpSysmacOS NA
## OpSysNo OS 0.096648 .
## OpSysWindows 10 0.009130 **
## OpSysWindows 10 S NA
## OpSysWindows 7 0.067348 .
## Weight 0.074873 .
## Frequenza NA
## Risoluzione1440x900 NA
## Risoluzione1600x900 NA
## Risoluzione1920x1080 NA
## Risoluzione1920x1200 NA
## Risoluzione2160x1440 NA
## Risoluzione2256x1504 NA
## Risoluzione2304x1440 NA
## Risoluzione2400x1600 NA
## Risoluzione2560x1440 NA
## Risoluzione2560x1600 NA
## Risoluzione2736x1824 NA
## Risoluzione2880x1800 NA
## Risoluzione3200x1800 NA
## Risoluzione3840x2160 NA
## Pixel NA
## SolidStateDiskTrue NA
## LogPrice < 2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 73.59 on 487 degrees of freedom
## Multiple R-squared: 0.9959, Adjusted R-squared: 0.9889
## F-statistic: 143.5 on 815 and 487 DF, p-value: < 2.2e-16
anova(lm_full, test="F")
## Analysis of Variance Table
##
## Response: Price
## Df Sum Sq Mean Sq F value Pr(>F)
## X 1 2927011 2927011 540.4463 < 2.2e-16 ***
## Company 18 102774715 5709706 1054.2458 < 2.2e-16 ***
## Product 601 471291511 784179 144.7916 < 2.2e-16 ***
## TypeName 5 1956874 391375 72.2638 < 2.2e-16 ***
## Inches 1 4089746 4089746 755.1347 < 2.2e-16 ***
## ScreenResolution 28 11843122 422969 78.0973 < 2.2e-16 ***
## Cpu 73 16677613 228460 42.1832 < 2.2e-16 ***
## Ram 1 4460536 4460536 823.5977 < 2.2e-16 ***
## Memory 26 3907222 150278 27.7474 < 2.2e-16 ***
## Gpu 55 5762488 104773 19.3453 < 2.2e-16 ***
## OpSys 4 569196 142299 26.2742 < 2.2e-16 ***
## Weight 1 52062 52062 9.6128 0.002044 **
## LogPrice 1 7225313 7225313 1334.0889 < 2.2e-16 ***
## Residuals 487 2637551 5416
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
drop1(lm_full, test="F")
## Single term deletions
##
## Model:
## Price ~ X + Company + Product + TypeName + Inches + ScreenResolution +
## Cpu + Ram + Memory + Gpu + OpSys + Weight + Frequenza + Risoluzione +
## Pixel + SolidStateDisk + LogPrice
## Df Sum of Sq RSS AIC F value Pr(>F)
## <none> 2637551 11552
## X 1 5789 2643340 11552 1.0689 0.30170
## Company 1 22650 2660201 11561 4.1821 0.04139 *
## Product 512 6490032 9127583 12145 2.3405 < 2.2e-16 ***
## TypeName 4 13855 2651406 11550 0.6396 0.63450
## Inches 1 17088 2654639 11558 3.1551 0.07631 .
## ScreenResolution 18 193895 2831446 11608 1.9889 0.00916 **
## Cpu 48 2146569 4784120 12232 8.2572 < 2.2e-16 ***
## Ram 1 31415 2668966 11565 5.8005 0.01639 *
## Memory 24 951812 3589363 11905 7.3226 < 2.2e-16 ***
## Gpu 55 2158339 4795890 12221 7.2458 < 2.2e-16 ***
## OpSys 4 178730 2816281 11629 8.2502 1.917e-06 ***
## Weight 1 17258 2654809 11558 3.1865 0.07487 .
## Frequenza 0 0 2637551 11552
## Risoluzione 0 0 2637551 11552
## Pixel 0 0 2637551 11552
## SolidStateDisk 0 0 2637551 11552
## LogPrice 1 7225313 9862864 13268 1334.0889 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#coefplot(lm_full, intercept=FALSE) #meglio di no ahah
par(mfrow=c(2,2))
plot(lm_full)
## Warning: not plotting observations with leverage one:
## 4, 7, 9, 13, 15, 18, 21, 23, 25, 29, 31, 32, 33, 34, 41, 43, 46, 57, 59, 60, 62, 63, 64, 68, 70, 75, 76, 79, 81, 84, 87, 89, 91, 99, 100, 101, 104, 106, 107, 108, 109, 119, 121, 122, 128, 134, 135, 137, 140, 146, 153, 154, 155, 156, 160, 166, 167, 172, 173, 178, 189, 192, 199, 202, 205, 213, 219, 223, 228, 229, 231, 232, 238, 239, 240, 242, 243, 247, 252, 253, 256, 257, 258, 259, 267, 270, 271, 276, 279, 284, 286, 292, 293, 295, 297, 298, 300, 301, 302, 303, 305, 311, 313, 314, 318, 323, 324, 325, 333, 334, 335, 339, 347, 348, 353, 354, 355, 362, 366, 370, 374, 377, 381, 385, 387, 388, 389, 391, 392, 396, 402, 405, 407, 410, 411, 412, 413, 422, 424, 429, 430, 431, 433, 436, 437, 438, 441, 445, 449, 456, 457, 458, 460, 463, 466, 469, 474, 475, 476, 480, 484, 486, 490, 492, 494, 496, 497, 501, 502, 504, 505, 507, 508, 509, 516, 517, 518, 520, 522, 533, 539, 543, 545, 547, 548, 554, 556, 557, 559, 561, 562, 563, 564, 571, 572, 573, 576, 577, 578, 579, 585, 587, 589, 591, 593, 594, 595, 598, 599, 603, 604, 607, 609, 610, 611, 612, 616, 619, 620, 627, 629, 631, 634, 635, 638, 644, 645, 647, 649, 651, 652, 654, 656, 662, 664, 665, 666, 668, 669, 671, 672, 673, 674, 675, 676, 679, 680, 681, 682, 684, 689, 690, 691, 692, 693, 696, 698, 699, 700, 702, 703, 704, 705, 708, 710, 718, 719, 722, 724, 726, 730, 731, 733, 734, 736, 737, 741, 743, 744, 745, 750, 751, 753, 755, 756, 757, 764, 766, 767, 768, 772, 773, 777, 780, 781, 782, 783, 784, 786, 787, 791, 792, 794, 797, 801, 802, 805, 808, 811, 816, 817, 818, 821, 822, 826, 827, 829, 833, 837, 839, 840, 841, 852, 853, 854, 855, 862, 863, 867, 869, 873, 877, 884, 889, 890, 892, 896, 902, 906, 908, 909, 910, 912, 918, 922, 923, 924, 934, 935, 938, 943, 944, 945, 946, 949, 951, 953, 954, 958, 959, 960, 961, 963, 964, 965, 973, 974, 976, 977, 978, 979, 980, 982, 984, 985, 990, 992, 993, 994, 996, 997, 998, 999, 1001, 1002, 1005, 1016, 1019, 1021, 1022, 1023, 1038, 1042, 1043, 1044, 1046, 1049, 1050, 1052, 1053, 1060, 1065, 1067, 1069, 1071, 1076, 1077, 1078, 1079, 1081, 1082, 1087, 1089, 1093, 1096, 1098, 1100, 1103, 1104, 1107, 1109, 1110, 1111, 1112, 1113, 1117, 1118, 1119, 1120, 1121, 1130, 1131, 1132, 1133, 1136, 1137, 1142, 1146, 1151, 1152, 1153, 1155, 1156, 1157, 1158, 1159, 1162, 1163, 1165, 1168, 1169, 1170, 1173, 1174, 1176, 1177, 1179, 1185, 1186, 1192, 1196, 1197, 1198, 1200, 1205, 1207, 1208, 1209, 1212, 1216, 1217, 1219, 1220, 1221, 1222, 1223, 1224, 1226, 1230, 1234, 1235, 1236, 1238, 1239, 1242, 1244, 1248, 1249, 1254, 1256, 1257, 1259, 1260, 1261
## Warning: not plotting observations with leverage one:
## 4, 7, 9, 13, 15, 18, 21, 23, 25, 29, 31, 32, 33, 34, 41, 43, 46, 57, 59, 60, 62, 63, 64, 68, 70, 75, 76, 79, 81, 84, 87, 89, 91, 99, 100, 101, 104, 106, 107, 108, 109, 119, 121, 122, 128, 134, 135, 137, 140, 146, 153, 154, 155, 156, 160, 166, 167, 172, 173, 178, 189, 192, 199, 202, 205, 213, 219, 223, 228, 229, 231, 232, 238, 239, 240, 242, 243, 247, 252, 253, 256, 257, 258, 259, 267, 270, 271, 276, 279, 284, 286, 292, 293, 295, 297, 298, 300, 301, 302, 303, 305, 311, 313, 314, 318, 323, 324, 325, 333, 334, 335, 339, 347, 348, 353, 354, 355, 362, 366, 370, 374, 377, 381, 385, 387, 388, 389, 391, 392, 396, 402, 405, 407, 410, 411, 412, 413, 422, 424, 429, 430, 431, 433, 436, 437, 438, 441, 445, 449, 456, 457, 458, 460, 463, 466, 469, 474, 475, 476, 480, 484, 486, 490, 492, 494, 496, 497, 501, 502, 504, 505, 507, 508, 509, 516, 517, 518, 520, 522, 533, 539, 543, 545, 547, 548, 554, 556, 557, 559, 561, 562, 563, 564, 571, 572, 573, 576, 577, 578, 579, 585, 587, 589, 591, 593, 594, 595, 598, 599, 603, 604, 607, 609, 610, 611, 612, 616, 619, 620, 627, 629, 631, 634, 635, 638, 644, 645, 647, 649, 651, 652, 654, 656, 662, 664, 665, 666, 668, 669, 671, 672, 673, 674, 675, 676, 679, 680, 681, 682, 684, 689, 690, 691, 692, 693, 696, 698, 699, 700, 702, 703, 704, 705, 708, 710, 718, 719, 722, 724, 726, 730, 731, 733, 734, 736, 737, 741, 743, 744, 745, 750, 751, 753, 755, 756, 757, 764, 766, 767, 768, 772, 773, 777, 780, 781, 782, 783, 784, 786, 787, 791, 792, 794, 797, 801, 802, 805, 808, 811, 816, 817, 818, 821, 822, 826, 827, 829, 833, 837, 839, 840, 841, 852, 853, 854, 855, 862, 863, 867, 869, 873, 877, 884, 889, 890, 892, 896, 902, 906, 908, 909, 910, 912, 918, 922, 923, 924, 934, 935, 938, 943, 944, 945, 946, 949, 951, 953, 954, 958, 959, 960, 961, 963, 964, 965, 973, 974, 976, 977, 978, 979, 980, 982, 984, 985, 990, 992, 993, 994, 996, 997, 998, 999, 1001, 1002, 1005, 1016, 1019, 1021, 1022, 1023, 1038, 1042, 1043, 1044, 1046, 1049, 1050, 1052, 1053, 1060, 1065, 1067, 1069, 1071, 1076, 1077, 1078, 1079, 1081, 1082, 1087, 1089, 1093, 1096, 1098, 1100, 1103, 1104, 1107, 1109, 1110, 1111, 1112, 1113, 1117, 1118, 1119, 1120, 1121, 1130, 1131, 1132, 1133, 1136, 1137, 1142, 1146, 1151, 1152, 1153, 1155, 1156, 1157, 1158, 1159, 1162, 1163, 1165, 1168, 1169, 1170, 1173, 1174, 1176, 1177, 1179, 1185, 1186, 1192, 1196, 1197, 1198, 1200, 1205, 1207, 1208, 1209, 1212, 1216, 1217, 1219, 1220, 1221, 1222, 1223, 1224, 1226, 1230, 1234, 1235, 1236, 1238, 1239, 1242, 1244, 1248, 1249, 1254, 1256, 1257, 1259, 1260, 1261
## Warning in sqrt(crit * p * (1 - hh)/hh): NaNs produced
## Warning in sqrt(crit * p * (1 - hh)/hh): NaNs produced
par(mfrow=c(1,1))
par(mfrow=c(1,2))
boxplot(lm_full$residuals)
qqnorm(lm_full$residuals);qqline(lm_full$residuals) # probably the correction would work pretty fine here
#tests
ad.test(lm_full$residuals)
##
## Anderson-Darling normality test
##
## data: lm_full$residuals
## A = 92.967, p-value < 2.2e-16
shapiro.test(lm_full$residuals)
##
## Shapiro-Wilk normality test
##
## data: lm_full$residuals
## W = 0.8175, p-value < 2.2e-16
library(MASS)
##
## Attaching package: 'MASS'
## The following object is masked from 'package:EnvStats':
##
## boxcox
boxcoxreg1<-boxcox(lm_full)
which.max(boxcoxreg1$y)
## [1] 50
lambda=boxcoxreg1$x[which.max(boxcoxreg1$y)]
lambda
## [1] -0.02020202
lm_full_t = lm(log(Price) ~ ., data = data)
par(mfrow=c(2,2))
plot(lm_full_t) #quite better
## Warning: not plotting observations with leverage one:
## 4, 7, 9, 13, 15, 18, 21, 23, 25, 29, 31, 32, 33, 34, 41, 43, 46, 57, 59, 60, 62, 63, 64, 68, 70, 75, 76, 79, 81, 84, 87, 89, 91, 99, 100, 101, 104, 106, 107, 108, 109, 119, 121, 122, 128, 134, 135, 137, 140, 146, 153, 154, 155, 156, 160, 166, 167, 172, 173, 178, 189, 192, 199, 202, 205, 213, 219, 223, 228, 229, 231, 232, 238, 239, 240, 242, 243, 247, 252, 253, 256, 257, 258, 259, 267, 270, 271, 276, 279, 284, 286, 292, 293, 295, 297, 298, 300, 301, 302, 303, 305, 311, 313, 314, 318, 323, 324, 325, 333, 334, 335, 339, 347, 348, 353, 354, 355, 362, 366, 370, 374, 377, 381, 385, 387, 388, 389, 391, 392, 396, 402, 405, 407, 410, 411, 412, 413, 422, 424, 429, 430, 431, 433, 436, 437, 438, 441, 445, 449, 456, 457, 458, 460, 463, 466, 469, 474, 475, 476, 480, 484, 486, 490, 492, 494, 496, 497, 501, 502, 504, 505, 507, 508, 509, 516, 517, 518, 520, 522, 533, 539, 543, 545, 547, 548, 554, 556, 557, 559, 561, 562, 563, 564, 571, 572, 573, 576, 577, 578, 579, 585, 587, 589, 591, 593, 594, 595, 598, 599, 603, 604, 607, 609, 610, 611, 612, 616, 619, 620, 627, 629, 631, 634, 635, 638, 644, 645, 647, 649, 651, 652, 654, 656, 662, 664, 665, 666, 668, 669, 671, 672, 673, 674, 675, 676, 679, 680, 681, 682, 684, 689, 690, 691, 692, 693, 696, 698, 699, 700, 702, 703, 704, 705, 708, 710, 718, 719, 722, 724, 726, 730, 731, 733, 734, 736, 737, 741, 743, 744, 745, 750, 751, 753, 755, 756, 757, 764, 766, 767, 768, 772, 773, 777, 780, 781, 782, 783, 784, 786, 787, 791, 792, 794, 797, 801, 802, 805, 808, 811, 816, 817, 818, 821, 822, 826, 827, 829, 833, 837, 839, 840, 841, 852, 853, 854, 855, 862, 863, 867, 869, 873, 877, 884, 889, 890, 892, 896, 902, 906, 908, 909, 910, 912, 918, 922, 923, 924, 934, 935, 938, 943, 944, 945, 946, 949, 951, 953, 954, 958, 959, 960, 961, 963, 964, 965, 973, 974, 976, 977, 978, 979, 980, 982, 984, 985, 990, 992, 993, 994, 996, 997, 998, 999, 1001, 1002, 1005, 1016, 1019, 1021, 1022, 1023, 1038, 1042, 1043, 1044, 1046, 1049, 1050, 1052, 1053, 1060, 1065, 1067, 1069, 1071, 1076, 1077, 1078, 1079, 1081, 1082, 1087, 1089, 1093, 1096, 1098, 1100, 1103, 1104, 1107, 1109, 1110, 1111, 1112, 1113, 1117, 1118, 1119, 1120, 1121, 1130, 1131, 1132, 1133, 1136, 1137, 1142, 1146, 1151, 1152, 1153, 1155, 1156, 1157, 1158, 1159, 1162, 1163, 1165, 1168, 1169, 1170, 1173, 1174, 1176, 1177, 1179, 1185, 1186, 1192, 1196, 1197, 1198, 1200, 1205, 1207, 1208, 1209, 1212, 1216, 1217, 1219, 1220, 1221, 1222, 1223, 1224, 1226, 1230, 1234, 1235, 1236, 1238, 1239, 1242, 1244, 1248, 1249, 1254, 1256, 1257, 1259, 1260, 1261
## Warning: not plotting observations with leverage one:
## 4, 7, 9, 13, 15, 18, 21, 23, 25, 29, 31, 32, 33, 34, 41, 43, 46, 57, 59, 60, 62, 63, 64, 68, 70, 75, 76, 79, 81, 84, 87, 89, 91, 99, 100, 101, 104, 106, 107, 108, 109, 119, 121, 122, 128, 134, 135, 137, 140, 146, 153, 154, 155, 156, 160, 166, 167, 172, 173, 178, 189, 192, 199, 202, 205, 213, 219, 223, 228, 229, 231, 232, 238, 239, 240, 242, 243, 247, 252, 253, 256, 257, 258, 259, 267, 270, 271, 276, 279, 284, 286, 292, 293, 295, 297, 298, 300, 301, 302, 303, 305, 311, 313, 314, 318, 323, 324, 325, 333, 334, 335, 339, 347, 348, 353, 354, 355, 362, 366, 370, 374, 377, 381, 385, 387, 388, 389, 391, 392, 396, 402, 405, 407, 410, 411, 412, 413, 422, 424, 429, 430, 431, 433, 436, 437, 438, 441, 445, 449, 456, 457, 458, 460, 463, 466, 469, 474, 475, 476, 480, 484, 486, 490, 492, 494, 496, 497, 501, 502, 504, 505, 507, 508, 509, 516, 517, 518, 520, 522, 533, 539, 543, 545, 547, 548, 554, 556, 557, 559, 561, 562, 563, 564, 571, 572, 573, 576, 577, 578, 579, 585, 587, 589, 591, 593, 594, 595, 598, 599, 603, 604, 607, 609, 610, 611, 612, 616, 619, 620, 627, 629, 631, 634, 635, 638, 644, 645, 647, 649, 651, 652, 654, 656, 662, 664, 665, 666, 668, 669, 671, 672, 673, 674, 675, 676, 679, 680, 681, 682, 684, 689, 690, 691, 692, 693, 696, 698, 699, 700, 702, 703, 704, 705, 708, 710, 718, 719, 722, 724, 726, 730, 731, 733, 734, 736, 737, 741, 743, 744, 745, 750, 751, 753, 755, 756, 757, 764, 766, 767, 768, 772, 773, 777, 780, 781, 782, 783, 784, 786, 787, 791, 792, 794, 797, 801, 802, 805, 808, 811, 816, 817, 818, 821, 822, 826, 827, 829, 833, 837, 839, 840, 841, 852, 853, 854, 855, 862, 863, 867, 869, 873, 877, 884, 889, 890, 892, 896, 902, 906, 908, 909, 910, 912, 918, 922, 923, 924, 934, 935, 938, 943, 944, 945, 946, 949, 951, 953, 954, 958, 959, 960, 961, 963, 964, 965, 973, 974, 976, 977, 978, 979, 980, 982, 984, 985, 990, 992, 993, 994, 996, 997, 998, 999, 1001, 1002, 1005, 1016, 1019, 1021, 1022, 1023, 1038, 1042, 1043, 1044, 1046, 1049, 1050, 1052, 1053, 1060, 1065, 1067, 1069, 1071, 1076, 1077, 1078, 1079, 1081, 1082, 1087, 1089, 1093, 1096, 1098, 1100, 1103, 1104, 1107, 1109, 1110, 1111, 1112, 1113, 1117, 1118, 1119, 1120, 1121, 1130, 1131, 1132, 1133, 1136, 1137, 1142, 1146, 1151, 1152, 1153, 1155, 1156, 1157, 1158, 1159, 1162, 1163, 1165, 1168, 1169, 1170, 1173, 1174, 1176, 1177, 1179, 1185, 1186, 1192, 1196, 1197, 1198, 1200, 1205, 1207, 1208, 1209, 1212, 1216, 1217, 1219, 1220, 1221, 1222, 1223, 1224, 1226, 1230, 1234, 1235, 1236, 1238, 1239, 1242, 1244, 1248, 1249, 1254, 1256, 1257, 1259, 1260, 1261
## Warning in sqrt(crit * p * (1 - hh)/hh): NaNs produced
## Warning in sqrt(crit * p * (1 - hh)/hh): NaNs produced
ad.test(lm_full_t$residuals) #not really
##
## Anderson-Darling normality test
##
## data: lm_full_t$residuals
## A = 163.56, p-value < 2.2e-16
shapiro.test(lm_full_t$residuals) #not really
##
## Shapiro-Wilk normality test
##
## data: lm_full_t$residuals
## W = 0.45046, p-value < 2.2e-16
A look over outliers
library(car)
## Loading required package: carData
##
## Attaching package: 'car'
## The following object is masked from 'package:EnvStats':
##
## qqPlot
## The following object is masked from 'package:psych':
##
## logit
influencePlot(lm_full,main="Influence Plot", sub="Circle size is proportial to Cook's Distance" )
## StudRes Hat CookD
## 4 NaN 1.0000000 NaN
## 7 NaN 1.0000000 NaN
## 1048 8.381278 0.8876581 0.5955203
## 1139 -8.381278 0.8876581 0.5955203
#Cook's Distance
cooksd <- cooks.distance(lm_full_t)
cooksda=data.frame(cooksd)
summary(cooksd)
## Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
## 0.0000 0.0000 0.0001 0.0016 0.0002 0.2910 494
# identify D values > 4/(n-k-1)
# Cook's D plot
cutoff <- 4/((nrow(data)-length(lm_full_t$coefficients)-2))
plot(lm_full_t, which=4, cook.levels=cutoff)
plot(cooksd, pch="*", cex=1, main="Influential Obs by Cooks distance") # plot cook's distance
abline(h = cutoff, col="red") # add cutoff line
text(x=1:length(cooksd)+1, y=cooksd, labels=ifelse(cooksd>4*mean(cooksd, na.rm=T),names(cooksd),""),
col="red")#add labels
#extract influencial obs
influential <- as.numeric(names(cooksd)[(cooksd > cutoff)]) # influential row numbers
influ=data.frame(data[cooksd > cutoff, ])
filtered_data <- data[ !(row.names(data) %in% c(influential)), ]
#Outlier rimossi
lm_full_t_no_OUTliers = lm(log(Price) ~ ., data = filtered_data)
par(mfrow=c(2,2))
plot(lm_full_t_no_OUTliers)
## Warning: not plotting observations with leverage one:
## 4, 9, 13, 15, 18, 23, 25, 29, 32, 34, 43, 46, 50, 59, 60, 63, 64, 66, 68, 69, 75, 78, 82, 84, 87, 89, 91, 99, 100, 101, 102, 104, 106, 108, 109, 119, 121, 122, 128, 134, 135, 137, 140, 146, 148, 154, 155, 156, 160, 166, 167, 172, 173, 179, 189, 192, 199, 202, 205, 212, 223, 228, 229, 231, 232, 239, 240, 242, 243, 248, 252, 253, 256, 257, 258, 259, 267, 270, 276, 279, 284, 286, 291, 292, 293, 295, 297, 298, 299, 301, 302, 303, 305, 311, 313, 314, 318, 323, 324, 325, 333, 334, 335, 339, 347, 348, 354, 355, 361, 365, 369, 373, 375, 376, 377, 380, 381, 383, 384, 386, 387, 388, 390, 391, 393, 395, 401, 404, 406, 409, 410, 411, 412, 421, 423, 428, 429, 430, 435, 436, 437, 440, 444, 448, 450, 454, 455, 456, 458, 461, 462, 464, 467, 472, 473, 474, 478, 484, 487, 489, 491, 492, 493, 494, 498, 499, 501, 502, 504, 505, 506, 514, 515, 517, 519, 536, 540, 542, 544, 545, 551, 553, 554, 556, 558, 559, 560, 562, 565, 568, 570, 572, 573, 574, 575, 576, 582, 583, 584, 586, 588, 590, 591, 592, 600, 601, 604, 605, 606, 607, 608, 612, 615, 616, 620, 623, 625, 627, 629, 631, 634, 638, 641, 643, 645, 647, 648, 650, 652, 658, 660, 661, 662, 664, 665, 667, 668, 669, 670, 671, 675, 676, 677, 678, 680, 681, 685, 686, 687, 688, 689, 692, 694, 695, 696, 698, 699, 700, 701, 704, 705, 706, 714, 715, 718, 720, 722, 726, 727, 729, 733, 737, 739, 740, 741, 747, 749, 751, 752, 753, 760, 762, 763, 764, 768, 769, 772, 773, 776, 777, 778, 779, 780, 782, 783, 787, 788, 793, 797, 798, 801, 804, 807, 812, 813, 814, 818, 822, 823, 825, 829, 833, 835, 836, 837, 844, 848, 849, 850, 851, 853, 858, 863, 865, 869, 873, 878, 879, 880, 885, 886, 888, 892, 898, 902, 904, 905, 906, 908, 914, 918, 919, 920, 930, 938, 940, 941, 944, 946, 948, 949, 953, 954, 955, 956, 958, 959, 960, 968, 969, 971, 972, 974, 975, 977, 979, 980, 985, 987, 988, 989, 991, 992, 994, 996, 997, 1000, 1011, 1013, 1014, 1016, 1017, 1018, 1033, 1037, 1038, 1039, 1041, 1043, 1044, 1046, 1047, 1054, 1056, 1059, 1061, 1063, 1065, 1070, 1071, 1072, 1073, 1075, 1076, 1081, 1083, 1090, 1092, 1094, 1097, 1098, 1101, 1103, 1104, 1105, 1107, 1111, 1112, 1113, 1114, 1115, 1124, 1125, 1126, 1127, 1130, 1131, 1135, 1145, 1146, 1148, 1149, 1150, 1151, 1152, 1155, 1156, 1158, 1161, 1162, 1163, 1166, 1167, 1169, 1170, 1172, 1178, 1179, 1185, 1189, 1190, 1191, 1193, 1194, 1198, 1200, 1201, 1202, 1205, 1209, 1210, 1212, 1213, 1214, 1215, 1216, 1217, 1219, 1223, 1227, 1228, 1229, 1231, 1232, 1235, 1237, 1239, 1241, 1242, 1247, 1249, 1250, 1252, 1253, 1254
## Warning: not plotting observations with leverage one:
## 4, 9, 13, 15, 18, 23, 25, 29, 32, 34, 43, 46, 50, 59, 60, 63, 64, 66, 68, 69, 75, 78, 82, 84, 87, 89, 91, 99, 100, 101, 102, 104, 106, 108, 109, 119, 121, 122, 128, 134, 135, 137, 140, 146, 148, 154, 155, 156, 160, 166, 167, 172, 173, 179, 189, 192, 199, 202, 205, 212, 223, 228, 229, 231, 232, 239, 240, 242, 243, 248, 252, 253, 256, 257, 258, 259, 267, 270, 276, 279, 284, 286, 291, 292, 293, 295, 297, 298, 299, 301, 302, 303, 305, 311, 313, 314, 318, 323, 324, 325, 333, 334, 335, 339, 347, 348, 354, 355, 361, 365, 369, 373, 375, 376, 377, 380, 381, 383, 384, 386, 387, 388, 390, 391, 393, 395, 401, 404, 406, 409, 410, 411, 412, 421, 423, 428, 429, 430, 435, 436, 437, 440, 444, 448, 450, 454, 455, 456, 458, 461, 462, 464, 467, 472, 473, 474, 478, 484, 487, 489, 491, 492, 493, 494, 498, 499, 501, 502, 504, 505, 506, 514, 515, 517, 519, 536, 540, 542, 544, 545, 551, 553, 554, 556, 558, 559, 560, 562, 565, 568, 570, 572, 573, 574, 575, 576, 582, 583, 584, 586, 588, 590, 591, 592, 600, 601, 604, 605, 606, 607, 608, 612, 615, 616, 620, 623, 625, 627, 629, 631, 634, 638, 641, 643, 645, 647, 648, 650, 652, 658, 660, 661, 662, 664, 665, 667, 668, 669, 670, 671, 675, 676, 677, 678, 680, 681, 685, 686, 687, 688, 689, 692, 694, 695, 696, 698, 699, 700, 701, 704, 705, 706, 714, 715, 718, 720, 722, 726, 727, 729, 733, 737, 739, 740, 741, 747, 749, 751, 752, 753, 760, 762, 763, 764, 768, 769, 772, 773, 776, 777, 778, 779, 780, 782, 783, 787, 788, 793, 797, 798, 801, 804, 807, 812, 813, 814, 818, 822, 823, 825, 829, 833, 835, 836, 837, 844, 848, 849, 850, 851, 853, 858, 863, 865, 869, 873, 878, 879, 880, 885, 886, 888, 892, 898, 902, 904, 905, 906, 908, 914, 918, 919, 920, 930, 938, 940, 941, 944, 946, 948, 949, 953, 954, 955, 956, 958, 959, 960, 968, 969, 971, 972, 974, 975, 977, 979, 980, 985, 987, 988, 989, 991, 992, 994, 996, 997, 1000, 1011, 1013, 1014, 1016, 1017, 1018, 1033, 1037, 1038, 1039, 1041, 1043, 1044, 1046, 1047, 1054, 1056, 1059, 1061, 1063, 1065, 1070, 1071, 1072, 1073, 1075, 1076, 1081, 1083, 1090, 1092, 1094, 1097, 1098, 1101, 1103, 1104, 1105, 1107, 1111, 1112, 1113, 1114, 1115, 1124, 1125, 1126, 1127, 1130, 1131, 1135, 1145, 1146, 1148, 1149, 1150, 1151, 1152, 1155, 1156, 1158, 1161, 1162, 1163, 1166, 1167, 1169, 1170, 1172, 1178, 1179, 1185, 1189, 1190, 1191, 1193, 1194, 1198, 1200, 1201, 1202, 1205, 1209, 1210, 1212, 1213, 1214, 1215, 1216, 1217, 1219, 1223, 1227, 1228, 1229, 1231, 1232, 1235, 1237, 1239, 1241, 1242, 1247, 1249, 1250, 1252, 1253, 1254
## Warning in sqrt(crit * p * (1 - hh)/hh): NaNs produced
## Warning in sqrt(crit * p * (1 - hh)/hh): NaNs produced
summary(lm_full_t_no_OUTliers) #interessante R^2=1, levare un po' di roba se no Lovaglio ci uccide
## Warning in summary.lm(lm_full_t_no_OUTliers): essentially perfect fit:
## summary may be unreliable
##
## Call:
## lm(formula = log(Price) ~ ., data = filtered_data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -1.593e-15 -7.020e-18 0.000e+00 4.990e-18 2.157e-15
##
## Coefficients: (160 not defined because of singularities)
## Estimate
## (Intercept) -9.618e-15
## X -1.569e-19
## CompanyApple -1.972e-15
## CompanyAsus -1.548e-16
## CompanyChuwi 1.793e-15
## CompanyDell -4.777e-16
## CompanyFujitsu 2.274e-16
## CompanyGoogle -1.375e-15
## CompanyHP -9.066e-16
## CompanyHuawei -6.401e-16
## CompanyLenovo 1.524e-15
## CompanyLG -1.050e-15
## CompanyMediacom 1.502e-15
## CompanyMicrosoft -1.164e-15
## CompanyMSI 1.414e-15
## CompanyRazer -9.681e-16
## CompanySamsung 3.457e-16
## CompanyToshiba -4.597e-16
## CompanyVero 2.396e-15
## CompanyXiaomi -1.140e-16
## Product14-am079na (N3710/8GB/2TB/W10) 1.784e-15
## Product15-AC110nv (i7-6500U/6GB/1TB/Radeon 1.610e-15
## Product15-AY023na (N3710/8GB/2TB/W10) 1.790e-15
## Product15-ay047nv (i3-6006U/6GB/1TB/Radeon 1.459e-15
## Product15-BA015wm (E2-7110/4GB/500GB/W10) 2.404e-15
## Product15-ba043na (A12-9700P/8GB/2TB/W10) 1.515e-15
## Product15-bs002nv (i3-6006U/4GB/128GB/FHD/W10) 1.489e-15
## Product15-bs005nv (i3-6006U/4GB/1TB 1.826e-15
## Product15-bs011nv (i7-7500U/4GB/500GB/Radeon 1.460e-15
## Product15-bs012nv (i7-7500U/8GB/1TB/Radeon 1.444e-15
## Product15-bs015dx (i5-7200U/8GB/1TB/W10) 1.368e-15
## Product15-bs017nv (i7-7500U/8GB/256GB/Radeon 1.540e-15
## Product15-bs018nq (i3-6006U/4GB/500GB/FHD/No 1.569e-15
## Product15-bs023nv (i3-6006U/4GB/1TB/FHD/W10) 1.528e-15
## Product15-bs024nv (i5-7200U/8GB/128GB/W10) 1.447e-15
## Product15-bs025nv (i5-7200U/8GB/256GB/W10) 1.667e-15
## Product15-BS026nv (i5-7200U/8GB/256GB/Radeon 1.652e-15
## Product15-BS028nv (i3-6006U/4GB/1TB/Radeon 1.688e-15
## Product15-bs053od (i7-7500U/6GB/1TB/W10) 1.681e-15
## Product15-bs078cl (i7-7500U/8GB/2TB/W10) 1.761e-15
## Product15-BS078nr (i7-7500U/8GB/1TB/W10) 1.554e-15
## Product15-BS101nv (i7-8550U/8GB/256GB/FHD/W10) 1.525e-15
## Product15-BS103nv (i5-8250U/6GB/256GB/Radeon 1.631e-15
## Product15-bs190od (i5-8250U/4GB/1TB/W10) 1.521e-15
## Product15-bw000nv (E2-9000e/4GB/500GB/Radeon 2.102e-15
## Product15-bw002nv (A6-9220/4GB/256GB/Radeon 1.810e-15
## Product15-bw003nv (A9-Series-9420/4GB/256GB/FHD/W10) 1.446e-15
## Product15-BW004nv (A9-9420/4GB/256GB/Radeon 1.342e-15
## Product15-bw007nv (A10-9620P/6GB/128GB/Radeon 1.310e-15
## Product15-bw009nv (A12-9720P/6GB/1TB/Radeon 1.690e-15
## Product15-bw011nv (A6-9220/4GB/1TB/FHD/W10) 2.349e-15
## Product15-BW037na (A9-9420/4GB/1TB/Radeon 1.326e-15
## Product15-BW091ND (A9-9420/6GB/1TB 1.406e-15
## Product15-BW094nd (A6-9220/8GB/128GB/W10) 1.847e-15
## Product15-cb003na (i5-7300HQ/8GB/1TB 1.671e-15
## Product15-cd005nv (A9-9420/6GB/256GB/Radeon 1.251e-15
## Product15-ra044nv (N3060/4GB/500GB/W10) 1.307e-15
## Product15-rb013nv (E2-9000e/4GB/500GB/W10) 2.250e-15
## Product17-ak001nv (A6-9220/4GB/500GB/Radeon 1.852e-15
## Product17-ak002nv (A10-9620P/6GB/2TB/Radeon 1.449e-15
## Product17-AK091ND (A9-9420/8GB/1TB/W10) 1.285e-15
## Product17-bs000nv I3 1.374e-15
## Product17-bs001nv (i5-7200U/6GB/2TB/Radeon 1.526e-15
## Product17-BS037cl (i3-6006U/8GB/1TB/W10) 1.367e-15
## Product17-BS092ND (i3-6006U/8GB/256GB/W10) 1.069e-15
## Product17-X047na (i3-6006U/8GB/1TB/W10) 1.275e-15
## Product17-Y002nv (A10-9600P/6GB/2TB/Radeon 1.384e-15
## Product250 G4 1.453e-15
## Product250 G5 1.482e-15
## Product250 G6 1.543e-15
## Product255 G6 2.275e-15
## Product320-15ISK (i3-6006U/4GB/1TB/GeForce -9.067e-16
## ProductA541NA-GO342 (N3350/4GB/500GB/Linux) 1.438e-15
## ProductA715-71G-59DH (i5-7300HQ/8GB/1TB/GeForce 1.230e-15
## ProductAlienware 15 8.113e-16
## ProductAlienware 17 8.979e-16
## ProductAspire 1 2.130e-15
## ProductAspire 3 7.443e-16
## ProductAspire 5 6.483e-16
## ProductAspire 7 1.018e-15
## ProductAspire A315-31 8.418e-16
## ProductAspire A315-51 5.699e-16
## ProductAspire A515-51G 6.268e-16
## ProductAspire A515-51G-32MX 7.792e-16
## ProductAspire A515-51G-37JS 8.148e-16
## ProductAspire A515-51G-59QF 8.229e-16
## ProductAspire A517-51G 5.060e-16
## ProductAspire A715-71G 8.380e-16
## ProductAspire E5-475 8.287e-16
## ProductAspire E5-575 6.139e-16
## ProductAspire E5-576G 5.567e-16
## ProductAspire E5-774G 4.029e-16
## ProductAspire ES1-523 1.156e-15
## ProductAspire ES1-531 6.871e-16
## ProductAspire ES1-533 7.299e-16
## ProductAspire ES1-572 7.223e-16
## ProductAspire F5-573G 6.742e-16
## ProductAspire F5-573G-510L 4.440e-16
## ProductAspire R7 1.657e-16
## ProductAspire VX5-591G 8.308e-16
## ProductB51-80 (i5-6200U/8GB/1008GB/Radeon -1.258e-15
## ProductB51-80 (i5-6200U/8GB/1TB/Radeon -8.315e-16
## ProductB51-80 (i7-6500U/4GB/1008GB/FHD/W7) -1.296e-15
## ProductB51-80 (i7-6500U/8GB/1008GB/Radeon -1.030e-15
## ProductBlade Pro 9.078e-16
## ProductBlade Stealth NA
## ProductC740-C9QX (3205U/2GB/32GB/Chrome 2.075e-15
## ProductCB5-132T-C9KK (N3160/4GB/32GB/Chrome 9.126e-16
## ProductChromebook 11 7.475e-16
## ProductChromebook 13 1.517e-15
## ProductChromebook 14 9.820e-16
## ProductChromebook 15 1.867e-15
## ProductChromebook 3 2.738e-17
## ProductChromebook C202SA 5.334e-16
## ProductChromebook C731-C78G 1.089e-15
## ProductChromebook C738T-C2EJ 5.972e-16
## ProductChromebook C910-C2ST 1.853e-15
## ProductChromebook CB5-571-C1DZ 7.091e-16
## ProductChromebook Flip -1.789e-16
## ProductChromebook N23 -6.024e-16
## ProductChromebook Plus 4.102e-16
## ProductChromebook X360 1.077e-15
## ProductE402WA-GA007T (E2-6110/4GB/64GB/W10 1.669e-15
## ProductE402WA-GA010T (E2-6110/2GB/32GB/W10) 2.998e-15
## ProductE5 774G 4.646e-16
## ProductEliteBook 1030 1.071e-16
## ProductElitebook 1040 4.954e-17
## ProductEliteBook 1040 1.659e-16
## ProductElitebook 820 1.839e-16
## ProductEliteBook 820 6.453e-17
## ProductElitebook 840 2.394e-16
## ProductEliteBook 840 3.583e-16
## ProductElitebook 850 5.229e-16
## ProductEliteBook 850 3.722e-16
## ProductElitebook Folio -4.352e-16
## ProductEliteBook Folio -3.347e-17
## ProductEliteBook x360 -2.159e-16
## ProductENVY - 5.518e-16
## ProductEnvy 13-AB002nv 6.665e-16
## ProductEnvy 13-AB020nr 6.688e-16
## ProductEnvy 13-AB077cl 7.974e-16
## ProductEnvy 13-AD007nv 1.190e-15
## ProductEnvy 13-ad009n 9.955e-16
## ProductEnvy 17-U275cl 1.219e-15
## ProductEnvy x360 6.544e-16
## ProductES1-523-84K7 (A8-7410/8GB/256GB/FHD/W10) 1.052e-15
## ProductExtensa EX2540 5.361e-16
## ProductExtensa EX2540-58KR 5.589e-16
## ProductF756UX-T4201D (i7-7500U/8GB/128GB 5.865e-16
## ProductFlex 5 -1.643e-15
## ProductFlexBook Edge -3.304e-16
## ProductFX502VM-AS73 (i7-7700HQ/16GB/1TB 7.725e-16
## ProductFX502VM-DM105T (i7-6700HQ/8GB/1TB/GeForce 1.116e-15
## ProductFX502VM-DM560T (i7-7700HQ/8GB/1TB 2.797e-16
## ProductFX503VD-E4022T (i7-7700HQ/8GB/1TB/GeForce 1.154e-15
## ProductFX503VM-E4007T (i7-7700HQ/16GB/1TB 1.123e-15
## ProductFX550IK-DM018T (FX-9830P/8GB/1TB/Radeon 5.296e-16
## ProductFX553VD-DM627T (i5-7300HQ/8GB/1TB 1.292e-15
## ProductFX553VD-FY647T (i7-7700HQ/8GB/256GB/GeForce 1.278e-15
## ProductFX753VD-GC007T (i7-7700HQ/8GB/1TB 1.196e-15
## ProductFX753VD-GC071T (i7-7700HQ/8GB/1TB/GeForce 9.381e-16
## ProductFX753VD-GC086T (i5-7300HQ/8GB/1TB 1.268e-15
## ProductFX753VD-GC461T (i7-7700HQ/16GB/1TB 8.432e-16
## ProductFX753VE-GC093 (i7-7700HQ/12GB/1TB/GeForce 1.106e-15
## ProductFX753VE-GC155T (i7-7700HQ/16GB/1TB 1.977e-16
## ProductG701VO-IH74K (i7-6820HK/32GB/2x 8.434e-16
## ProductG752VY-GC162T (i7-6700HQ/16GB/1TB -4.050e-16
## ProductGE62 Apache -1.284e-15
## ProductGE63VR 7RE -8.601e-16
## ProductGE63VR 7RF -8.696e-16
## ProductGE72 Apache -1.611e-15
## ProductGE72MVR 7RG -9.061e-16
## ProductGE72VR 6RF -7.857e-16
## ProductGE72VR Apache -4.877e-16
## ProductGE73VR 7RE -9.329e-16
## ProductGE73VR 7RF -1.006e-15
## ProductGL553VE-FY082T (i7-7700HQ/8GB/1TB 9.628e-16
## ProductGL62 6QF -1.262e-15
## ProductGL62M (i5-7300HQ/8GB/1TB -5.537e-16
## ProductGL62M 7RD -6.459e-16
## ProductGL62M 7RDX -3.684e-16
## ProductGL62M 7REX -4.912e-16
## ProductGL72M 7RDX -5.099e-16
## ProductGL72M 7REX -6.174e-16
## ProductGP62 7RDX -5.394e-16
## ProductGP62M 7RDX -3.705e-16
## ProductGP62M 7REX -6.425e-16
## ProductGP62M Leopard -5.027e-16
## ProductGP62MVR 6RF -6.798e-16
## ProductGP72M 7REX -6.322e-16
## ProductGP72MVR 7RFX -5.312e-16
## ProductGP72VR Leopard -5.670e-16
## ProductGram 14Z970 1.267e-16
## ProductGram 15Z970 1.198e-16
## ProductGram 15Z975 NA
## ProductGS40 Phantom -1.862e-15
## ProductGS43VR 7RE -8.936e-16
## ProductGS60 Ghost -2.097e-15
## ProductGS63VR 6RF -1.060e-15
## ProductGS63VR 7RF -9.783e-16
## ProductGS63VR 7RG -8.821e-16
## ProductGS70 Stealth -1.777e-15
## ProductGS73VR 7RF -8.974e-16
## ProductGS73VR 7RG -9.846e-16
## ProductGS73VR Stealth -1.176e-15
## ProductGT62VR 6RD -8.982e-16
## ProductGT62VR 7RE -9.632e-16
## ProductGT72VR Dominator -9.864e-16
## ProductGT73EVR 7RE -1.058e-15
## ProductGT73VR Titan -1.083e-15
## ProductGT80S 6QE -2.121e-15
## ProductGT80S 6QF-074US -2.480e-15
## ProductGV62 7RD-1686NL -5.450e-16
## ProductGV62M 7RD -4.928e-16
## ProductIdeaPad 100S-14IBR 3.139e-16
## ProductIdeaPad 110-15IBR -4.692e-16
## ProductIdeaPad 110-15ISK -1.041e-15
## ProductIdeaPad 110-17ACL -7.806e-16
## ProductIdeaPad 120S-14IAP 1.351e-16
## ProductIdeaPad 300-17ISK -4.298e-16
## ProductIdeaPad 310-15ABR -7.550e-16
## ProductIdeaPad 310-15IKB -8.986e-16
## ProductIdeapad 310-15ISK -9.241e-16
## ProductIdeaPad 310-15ISK -9.146e-16
## ProductIdeaPad 320-14IAP -6.084e-16
## ProductIdeaPad 320-15ABR -1.202e-15
## ProductIdeaPad 320-15AST -6.364e-16
## ProductIdeapad 320-15IAP -1.066e-15
## ProductIdeaPad 320-15IAP -6.171e-16
## ProductIdeaPad 320-15IKB -1.135e-15
## ProductIdeapad 320-15IKBN -8.662e-16
## ProductIdeaPad 320-15IKBN -9.092e-16
## ProductIdeapad 320-15IKBR -8.351e-16
## ProductIdeapad 320-15ISK -1.248e-15
## ProductIdeaPad 320-15ISK -1.061e-15
## ProductIdeaPad 320-17IKB -1.057e-15
## ProductIdeaPad 320-17IKBR -1.084e-15
## ProductIdeaPad 320-17ISK -1.100e-15
## ProductIdeaPad 320s-14IKB -1.202e-15
## ProductIdeaPad 500-15ISK -1.382e-15
## ProductIdeaPad 510-15IKB -9.713e-16
## ProductIdeaPad 510-15ISK -8.083e-16
## ProductIdeapad 510S-13IKB -1.254e-15
## ProductIdeaPad 510s-14IKB -8.507e-16
## ProductIdeapad 520-15IKBR -1.229e-15
## ProductIdeaPad 520s-14IKB -1.164e-15
## ProductIdeaPad 520S-14IKB -1.280e-15
## ProductIdeapad 700-15ISK -1.763e-15
## ProductIdeaPad 720S-13IKB -1.742e-15
## ProductIdeaPad 720S-14IKB -1.721e-15
## ProductIdeaPad Y700-15ACZ -1.179e-15
## ProductIdeaPad Y700-15ISK -1.167e-15
## ProductIdeaPad Y900-17ISK -2.112e-15
## ProductIdeaPad Y910-17ISK -1.020e-15
## ProductInspiron 3168 6.129e-16
## ProductInspiron 3179 7.601e-16
## ProductInspiron 3552 1.116e-15
## ProductInspiron 3567 1.115e-15
## ProductInspiron 3576 9.418e-16
## ProductInspiron 5368 8.127e-16
## ProductInspiron 5370 7.043e-16
## ProductInspiron 5378 5.395e-16
## ProductInspiron 5379 6.192e-16
## ProductInspiron 5567 9.243e-16
## ProductInspiron 5568 6.708e-17
## ProductInspiron 5570 8.024e-16
## ProductInspiron 5577 1.582e-15
## ProductInspiron 5578 8.337e-16
## ProductInspiron 5579 5.893e-16
## ProductInspiron 5767 7.319e-16
## ProductInspiron 5770 5.478e-16
## ProductInspiron 7378 3.818e-17
## ProductInspiron 7559 1.207e-15
## ProductInspiron 7560 4.598e-16
## ProductInspiron 7567 1.370e-15
## ProductInspiron 7570 4.171e-16
## ProductInspiron 7577 1.373e-15
## ProductInspiron 7579 3.177e-16
## ProductInspiron 7773 1.065e-15
## ProductInspiron 7779 2.515e-16
## ProductInsprion 5767 6.817e-16
## ProductK146 (N3350/4GB/32GB/W10) -2.032e-17
## ProductK147 (N3350/4GB/32GB/FHD/W10) -4.353e-16
## ProductK556UR-DM621T (i7-7500U/8GB/256GB/GeForce 9.830e-16
## ProductK756UX-T4340T (i5-7200U/8GB/500GB 1.103e-15
## ProductL403NA-GA013TS (N3350/4GB/32GB/W10) 2.071e-15
## ProductL502NA-GO052T (N3350/4GB/128GB/W10) 7.103e-16
## ProductLapBook 12.3 -5.969e-16
## ProductLapbook 15,6 4.953e-17
## ProductLapBook 15.6" NA
## ProductLaptop MSI -1.984e-15
## ProductLatitude 3180 1.118e-17
## ProductLatitude 3380 1.844e-16
## ProductLatitude 3480 5.211e-16
## ProductLatitude 3570 9.161e-16
## ProductLatitude 3580 4.344e-16
## ProductLatitude 5289 -5.082e-16
## ProductLatitude 5480 2.113e-16
## ProductLatitude 5490 1.180e-16
## ProductLatitude 5580 2.061e-16
## ProductLatitude 5590 2.417e-16
## ProductLatitude 7280 -2.456e-16
## ProductLatitude 7390 -6.297e-16
## ProductLatitude 7480 -2.687e-16
## ProductLatitude E5270 -2.738e-16
## ProductLatitude E5470 2.591e-16
## ProductLatitude E5570 5.310e-16
## ProductLatitude E7270 -2.333e-16
## ProductLatitude E7470 -1.830e-16
## ProductLegion Y520-15IKBN -3.847e-16
## ProductLegion Y720-15IKB -6.144e-16
## ProductLenovo IdeaPad 4.328e-17
## ProductLeopard GP72M -7.346e-16
## ProductLifeBook A556 2.173e-16
## ProductLifebook A557 -3.059e-17
## ProductLifeBook A557 NA
## ProductMacBook 12" 8.763e-16
## ProductMacbook Air 1.441e-15
## ProductMacBook Air 1.426e-15
## ProductMacBook Pro NA
## ProductMateBook X NA
## ProductMi Notebook NA
## ProductN23 (N3060/4GB/128GB/W10) -1.738e-15
## ProductN42-20 Chromebook -8.514e-16
## ProductNitro 5 1.035e-15
## ProductNitro AN515-51 1.275e-15
## ProductNoteb Pav 1.103e-15
## ProductNotebook 9 -1.064e-15
## ProductNotebook Odyssey NA
## ProductOmen - 1.889e-15
## ProductOmen 15-AX205na 1.968e-15
## ProductOmen 15-ce006nv 1.339e-15
## ProductOmen 15-ce007nv 1.811e-15
## ProductOmen 17-an006nv 1.556e-15
## ProductOmen 17-AN010nv 1.699e-15
## ProductOmen 17-an012dx 5.660e-16
## ProductOmen 17-W006na 5.470e-16
## ProductOmen 17-w207nv 1.496e-15
## ProductOmen 17-w212nv 1.914e-15
## ProductOmen 17-W295 1.761e-15
## ProductPavilion 14-BK001nv 1.460e-15
## ProductPavilion 15-AW003nv 1.177e-15
## ProductPavilion 15-BC000nv 1.319e-15
## ProductPavilion 15-cb003nv 2.223e-15
## ProductPavilion 15-CK000nv 1.600e-15
## ProductPavilion Power 1.704e-15
## ProductPavilion x360 1.106e-15
## ProductPavilion X360 8.428e-16
## ProductPixelbook (Core NA
## ProductPL60 7RD NA
## ProductPortege A30-C-1CZ -9.591e-17
## ProductPortege X20W-D-10V -2.736e-16
## ProductPortege X30-D-10J -5.195e-16
## ProductPortege X30-D-10K -4.083e-16
## ProductPortege X30-D-10L -6.588e-16
## ProductPortege X30-D-10V -3.261e-16
## ProductPortege X30-D-10X -2.929e-16
## ProductPortege Z30-C-16H -2.625e-16
## ProductPortege Z30-C-16J -1.519e-16
## ProductPortégé Z30-C-16K -4.970e-16
## ProductPortege Z30-C-16L -1.526e-16
## ProductPortege Z30-C-16P -2.081e-16
## ProductPortege Z30-C-16Z -2.807e-16
## ProductPortégé Z30-C-188 1.315e-17
## ProductPortege Z30-C-1CV -1.147e-16
## ProductPortege Z30-C-1CW -2.339e-16
## ProductPortege Z30T-C-133 -2.251e-16
## ProductPrecision 3510 6.563e-16
## ProductPrecision 3520 8.981e-16
## ProductPrecision 5520 -2.433e-16
## ProductPrecision 7520 -6.748e-16
## ProductPrecision 7720 -1.352e-15
## ProductPrecision M5520 -4.898e-16
## ProductPredator 17 6.516e-16
## ProductPredator G9-793 5.818e-16
## ProductPro P2540UA-AB51 3.481e-16
## ProductPro P2540UA-XO0192R 4.504e-16
## ProductPro P2540UA-XO0198T 9.846e-16
## ProductPro P2540UA-XS51 -6.519e-17
## ProductProbook 430 7.755e-16
## ProductProBook 430 9.664e-16
## ProductProbook 440 9.115e-16
## ProductProBook 440 8.075e-16
## ProductProbook 450 8.737e-16
## ProductProBook 450 9.882e-16
## ProductProbook 470 8.589e-16
## ProductProBook 470 8.444e-16
## ProductProbook 640 4.153e-16
## ProductProBook 640 4.608e-16
## ProductProbook 650 6.135e-16
## ProductProBook 650 4.593e-16
## ProductProBook x360 5.208e-16
## ProductQ304UA-BHI5T11 (i5-7200U/6GB/1TB/FHD/W10) 5.040e-16
## ProductQ524UQ-BHI7T15 (i7-7500U/12GB/2TB/GeForce 7.678e-16
## ProductQ534UX-BHI7T19 (i7-7500U/16GB/2TB -1.010e-16
## ProductR417NA-RS01 (N3350/4GB/32GB/W10) 1.987e-15
## ProductR558UA-DM966T (i5-7200U/8GB/128GB/FHD/W10) 1.211e-15
## ProductROG G701VI 9.521e-16
## ProductRog G701VIK-BA060T 6.267e-16
## ProductROG G701VO -1.495e-16
## ProductROG G703VI-E5062T 5.974e-16
## ProductRog G752VL-GC088D 5.118e-16
## ProductRog G752VL-UH71T 3.172e-16
## ProductRog G752VS-BA171T 5.394e-16
## ProductROG G752VSK-GC493T -3.702e-17
## ProductRog G752VT-GC073T -1.130e-16
## ProductRog G752VY-GC229T -3.029e-16
## ProductRog GL502VM-DS74 7.951e-16
## ProductRog GL502VS 5.397e-16
## ProductRog GL552VW-CN470T 3.200e-16
## ProductRog GL552VW-DM201T 7.679e-16
## ProductRog GL553VE-DS74 5.990e-16
## ProductROG GL553VE-FY022 8.457e-16
## ProductRog GL553VE-FY052T 9.194e-16
## ProductRog GL702VM-GC017T 7.474e-16
## ProductRog GL702VM-GC354T 9.561e-16
## ProductRog GL702VS-BA023T 5.245e-16
## ProductRog GL702VS-GC095T 6.578e-16
## ProductROG GL703VD-GC028T 8.947e-16
## ProductRog GL752VW-T4308T 2.905e-16
## ProductRog GL753VD-GC042T 1.113e-15
## ProductRog GL753VD-GC082T 8.038e-16
## ProductRog GL753VE-DS74 7.682e-16
## ProductRog GL753VE-GC070T 7.731e-16
## ProductRog Strix 5.770e-16
## ProductROG Strix 7.132e-16
## ProductROG Zephyrus -6.038e-16
## ProductSatellite Pro 4.861e-16
## ProductSmartBook 130 5.948e-16
## ProductSmartBook 140 6.347e-16
## ProductSmartBook 141 2.433e-16
## ProductSmartbook 142 1.234e-16
## ProductSmartBook Edge NA
## ProductSP315-51 (i7-7500U/12GB/1TB/FHD/W10) 4.797e-16
## ProductSP714-51 (i7-7Y75/8GB/256GB/FHD/W10) -2.792e-16
## ProductSpectre 13-V100nv 5.863e-16
## ProductSpectre 13-V111dx 3.262e-16
## ProductSpectre Pro 8.842e-17
## ProductSpectre x360 1.870e-16
## ProductSpectre X360 3.973e-16
## ProductSpin 3 3.635e-16
## ProductSpin 5 -1.362e-16
## ProductSpin SP111-31 1.862e-15
## ProductStream 11-Y000na 2.959e-15
## ProductStream 14-AX000nv 2.820e-15
## ProductStream 14-AX001nv 2.500e-15
## ProductStream 14-AX040wm 2.164e-15
## ProductSurface Laptop NA
## ProductSwift 3 2.829e-16
## ProductSwift 7 1.279e-16
## ProductSwift SF114-31-P5HY 8.045e-16
## ProductTecra A40-C-1DF -1.353e-17
## ProductTecra A40-C-1E5 -1.021e-16
## ProductTecra A40-C-1KF 9.674e-17
## ProductTecra A50-C-1ZV 6.735e-17
## ProductTecra A50-C-218 1.945e-16
## ProductTecra A50-C-21G 2.743e-16
## ProductTecra A50-D-11D 8.521e-17
## ProductTecra A50-D-11M 4.992e-17
## ProductTecra X40-D-10G -5.583e-16
## ProductTecra X40-D-10H -2.366e-16
## ProductTecra X40-D-10Z -8.358e-17
## ProductTecra Z40-C-12X -1.108e-16
## ProductTecra Z40-C-12Z -3.514e-16
## ProductTecra Z40-C-136 -4.237e-16
## ProductTecra Z40-C-161 -1.827e-16
## ProductTecra Z50-C-140 -4.279e-16
## ProductTecra Z50-C-144 -5.025e-18
## ProductTecra Z50-D-10E NA
## ProductThinkpad 13 -1.541e-15
## ProductThinkPad 13 -1.701e-15
## ProductThinkpad E470 -1.145e-15
## ProductThinkPad E470 -1.566e-15
## ProductThinkPad E480 -1.668e-15
## ProductThinkpad E570 -1.416e-15
## ProductThinkPad E570 -1.373e-15
## ProductThinkPad E580 -1.636e-15
## ProductThinkPad L460 -1.750e-15
## ProductThinkPad L470 -1.873e-15
## ProductThinkpad L560 -1.725e-15
## ProductThinkPad L570 -1.693e-15
## ProductThinkPad P40 -2.226e-15
## ProductThinkpad P50 -1.936e-15
## ProductThinkpad P51 -3.211e-15
## ProductThinkPad P51 -1.867e-15
## ProductThinkpad P51s -1.154e-15
## ProductThinkPad P51s -6.378e-16
## ProductThinkPad P70 -2.176e-15
## ProductThinkpad P71 -2.767e-15
## ProductThinkpad T460 -2.068e-15
## ProductThinkPad T460 -1.965e-15
## ProductThinkpad T460p -2.330e-15
## ProductThinkpad T460s -2.577e-15
## ProductThinkPad T460s -2.463e-15
## ProductThinkpad T470 -2.212e-15
## ProductThinkPad T470 -2.213e-15
## ProductThinkpad T470p -1.465e-15
## ProductThinkPad T470p -2.572e-15
## ProductThinkpad T470s -2.390e-15
## ProductThinkPad T470s -2.384e-15
## ProductThinkpad T560 -2.132e-15
## ProductThinkPad T560 -2.141e-15
## ProductThinkpad T570 -9.191e-16
## ProductThinkPad T570 -2.218e-15
## ProductThinkpad X1 -2.628e-15
## ProductThinkPad X1 -2.512e-15
## ProductThinkpad X260 -2.154e-15
## ProductThinkpad X270 -2.187e-15
## ProductThinkPad X270 -2.330e-15
## ProductThinkpad Yoga -2.570e-15
## ProductThinkPad Yoga -2.473e-15
## ProductTMX349-G2-M-50FS (i5-7200U/8GB/256GB/FHD/W10) 1.370e-16
## ProductTP501UA-CJ131T (i5-7200U/8GB/1TB/W10) 2.685e-16
## ProductTravelMate B 1.214e-16
## ProductTravelMate B117-M 1.711e-15
## ProductTravelMate P238-M 2.145e-16
## ProductTravelMate P259-G2 4.208e-16
## ProductUX410UA-GV097T (i3-7100U/4GB/256GB/FHD/W10) 1.970e-16
## ProductUX410UA-GV350T (i5-8250U/8GB/256GB/FHD/W10) 8.938e-17
## ProductUX430UQ-GV209R (i7-7500U/8GB/256GB/GeForce -6.052e-17
## ProductUX510UX-CN269T (i7-7500U/8GB/256GB -2.102e-16
## ProductV110-15IAP (N3350/4GB/128GB/No -4.452e-16
## ProductV110-15IAP (N3350/4GB/1TB/No -4.536e-16
## ProductV110-15IKB (i5-7200U/4GB/128GB/W10) -8.658e-16
## ProductV110-15ISK (3855U/4GB/500GB/W10) -7.016e-16
## ProductV110-15ISK (i3-6006U/4GB/128GB/W10) -8.437e-16
## ProductV110-15ISK (i3-6006U/4GB/1TB/No -6.096e-16
## ProductV110-15ISK (i3-6006U/4GB/1TB/Radeon -4.492e-16
## ProductV110-15ISK (i3-6006U/4GB/500GB/W10) -1.137e-15
## ProductV110-15ISK (i5-6200U/4GB/128GB/W10) -8.946e-16
## ProductV110-15ISK (i5-6200U/4GB/500GB/No -7.312e-16
## ProductV110-15ISK (i5-6200U/4GB/500GB/W10) -9.859e-16
## ProductV131 (X5-Z8350/4GB/32GB/FHD/W10) 1.679e-16
## ProductV142 (X5-Z8350/2GB/32GB/W10) NA
## ProductV310-15IKB (i5-7200U/4GB/1TB/FHD/W10) -6.700e-16
## ProductV310-15IKB (i5-7200U/4GB/1TB/No -9.283e-16
## ProductV310-15IKB (i5-7200U/8GB/1TB -1.056e-15
## ProductV310-15IKB (i7-7500U/4GB/1TB/FHD/W10) -1.252e-15
## ProductV310-15ISK (i3-6006U/4GB/128GB/FHD/No -9.790e-16
## ProductV310-15ISK (i3-6006U/4GB/1TB/FHD/W10) -9.640e-16
## ProductV310-15ISK (i3-6006U/4GB/500GB/No -1.173e-15
## ProductV310-15ISK (i5-6200U/4GB/1TB/FHD/No -9.210e-16
## ProductV310-15ISK (i5-7200U/4GB/1TB/FHD/W10) -1.006e-15
## ProductV310-15ISK (i5-7200U/8GB/1TB -1.031e-15
## ProductV320-17ISK (i3-6006U/4GB/500GB/FHD/No -1.397e-15
## ProductV330-15IKB (i3-7130U/4GB/128GB/FHD/W10) -1.289e-15
## ProductV330-15IKB (i5-8250U/4GB/256GB/FHD/W10) -1.336e-15
## ProductV330-15IKB (i5-8250U/4GB/500GB/FHD/W10) -1.332e-15
## ProductV330-15IKB (i5-8250U/8GB/256GB/FHD/W10) -1.140e-15
## ProductV330-15IKB (i7-8550U/8GB/256GB/FHD/W10) -1.242e-15
## ProductV510-15IKB (i5-7200U/8GB/256GB/FHD/No -7.517e-16
## ProductVivoBook E12 2.033e-15
## ProductVivobook E200HA 2.379e-15
## ProductVivoBook E201NA 8.563e-16
## ProductVivoBook E403NA 2.009e-15
## ProductVivoBook Flip 1.636e-15
## ProductVivoBook L402NA 1.728e-15
## ProductVivobook Max 7.458e-16
## ProductVivoBook Max 7.560e-16
## ProductVivoBook Pro 8.755e-16
## ProductVivoBook S14 4.912e-16
## ProductVivoBook S15 1.320e-16
## ProductVivoBook X540YA-XX519T 1.308e-15
## ProductVivobook X541UV-DM1217T 3.661e-16
## ProductVostro 3559 7.066e-16
## ProductVostro 3568 7.776e-16
## ProductVostro 5370 3.925e-16
## ProductVostro 5468 4.312e-16
## ProductVostro 5471 5.377e-16
## ProductVostro 5568 5.810e-16
## ProductX505BP-BR019T (A9-9420/4GB/1TB/Radeon 3.157e-16
## ProductX540SA-RBPDN09 (N3710/4GB/1TB/W10) 1.301e-15
## ProductX540UA-DM186 (i3-6006U/4GB/1TB/FHD/Linux) 7.811e-16
## ProductX541NA (N3350/4GB/1TB/FHD/W10) 8.952e-16
## ProductX541NA (N3350/4GB/1TB/Linux) 1.014e-15
## ProductX541NA (N4200/4GB/1TB/W10) 6.272e-16
## ProductX541NA-GO020T (N3350/4GB/1TB/W10) 1.130e-15
## ProductX541NA-GO121 (N4200/4GB/1TB/Linux) 6.035e-16
## ProductX541NA-GO414T (N3350/8GB/1TB/W10) 7.970e-16
## ProductX541NA-PD1003Y (N4200/4GB/500GB/W10) 1.045e-15
## ProductX541UA-DM1897 (i3-6006U/4GB/256GB/FHD/Linux) 8.006e-16
## ProductX541UV-DM1439T (i3-7100U/6GB/256GB/GeForce 6.765e-16
## ProductX542UQ-DM117 (i3-7100U/8GB/1TB/GeForce 3.381e-16
## ProductX542UQ-GO005 (i5-7200U/8GB/1TB/GeForce 7.550e-16
## ProductX550VX-XX015D (i5-6300HQ/4GB/1TB/GeForce 4.829e-16
## ProductX553SA-XX021T (N3050/4GB/500GB/W10) 8.132e-16
## ProductX553SA-XX031T (N3050/4GB/500GB/W10) 8.377e-16
## ProductX555BP-XX180T (A9-9420/4GB/1TB/Radeon 5.424e-16
## ProductX555QG-DM242T (A10-9620P/4GB/1TB 7.162e-16
## ProductX556UJ-XO044T (i7-6500U/4GB/500GB/GeForce 7.456e-16
## ProductX705UV-BX074T (i3-6006U/4GB/1TB/GeForce 4.986e-16
## ProductX751NV-TY001 (N4200/4GB/1TB/GeForce 4.383e-16
## ProductX751NV-TY001T (N4200/4GB/1TB/GeForce 3.816e-16
## ProductX751SV-TY001T (N3710/4GB/1TB/GeForce 4.951e-16
## ProductXPS 13 -2.007e-16
## ProductXPS 15 5.975e-16
## ProductYoga 11e -1.164e-15
## ProductYoga 500-14IBD -1.591e-15
## ProductYoga 500-14ISK -1.028e-15
## ProductYoga 500-15ISK -1.538e-15
## ProductYoga 510-15IKB -1.241e-15
## ProductYoga 520-14IKB -1.491e-15
## ProductYoga 700-11ISK -2.118e-15
## ProductYoga 720-13IKB -1.902e-15
## ProductYoga 720-15IKB -1.214e-15
## ProductYoga 730 -2.093e-15
## ProductYoga 900-13ISK -1.713e-15
## ProductYoga 900S-12ISK -1.808e-15
## ProductYoga 910-13IKB -1.966e-15
## ProductYoga 920-13IKB -2.385e-15
## ProductYoga Book -9.605e-16
## ProductZbook 15 4.956e-16
## ProductZBook 15 7.961e-17
## ProductZBook 15u 1.889e-15
## ProductZbook 17 -7.267e-17
## ProductZBook 17 2.403e-16
## ProductZBook Studio NA
## ProductZenbook 3 -4.433e-16
## ProductZenBook 3 -5.422e-16
## ProductZenbook Flip -4.585e-16
## ProductZenBook Flip -1.890e-16
## ProductZenBook Pro 2.803e-16
## ProductZenBook UX305CA-UBM1 9.036e-16
## ProductZenBook UX310UA-FB485T -5.225e-16
## ProductZenBook UX310UA-WB71 -1.514e-16
## ProductZenBook UX310UQ-GL026T 3.758e-16
## ProductZenbook UX330UA-AH5Q -2.169e-16
## ProductZenbook UX390UA -6.382e-16
## ProductZenbook UX410UA-GV027T 6.684e-17
## ProductZenBook UX410UA-GV183T 2.638e-17
## ProductZenbook UX430UA 2.812e-17
## ProductZenBook UX430UA 1.591e-17
## ProductZenBook UX430UN 3.785e-17
## ProductZenbook UX510UW-FI095T 3.395e-16
## ProductZenBook UX510UX-CN211T -8.624e-17
## ProductZenBook UX530UQ-PRO NA
## TypeNameGaming -1.440e-16
## TypeNameNetbook 1.080e-16
## TypeNameNotebook 2.468e-17
## TypeNameUltrabook 2.281e-17
## TypeNameWorkstation -1.001e-15
## Inches -1.164e-17
## ScreenResolution1440x900 -3.062e-16
## ScreenResolution1600x900 7.560e-17
## ScreenResolution1920x1080 NA
## ScreenResolution2560x1440 -2.790e-16
## ScreenResolution4K Ultra HD / Touchscreen 3840x2160 -1.112e-16
## ScreenResolution4K Ultra HD 3840x2160 -1.643e-16
## ScreenResolutionFull HD / Touchscreen 1920x1080 -1.135e-17
## ScreenResolutionFull HD 1920x1080 -2.518e-17
## ScreenResolutionIPS Panel 1366x768 4.585e-17
## ScreenResolutionIPS Panel 2560x1440 -1.284e-16
## ScreenResolutionIPS Panel 4K Ultra HD / Touchscreen 3840x2160 -1.753e-16
## ScreenResolutionIPS Panel 4K Ultra HD 3840x2160 -2.379e-16
## ScreenResolutionIPS Panel Full HD / Touchscreen 1920x1080 1.435e-16
## ScreenResolutionIPS Panel Full HD 1366x768 1.401e-17
## ScreenResolutionIPS Panel Full HD 1920x1080 -6.029e-17
## ScreenResolutionIPS Panel Full HD 1920x1200 NA
## ScreenResolutionIPS Panel Full HD 2160x1440 NA
## ScreenResolutionIPS Panel Full HD 2560x1440 -1.078e-15
## ScreenResolutionIPS Panel Quad HD+ / Touchscreen 3200x1800 -6.784e-17
## ScreenResolutionIPS Panel Quad HD+ 2560x1440 1.226e-16
## ScreenResolutionIPS Panel Quad HD+ 3200x1800 NA
## ScreenResolutionIPS Panel Retina Display 2304x1440 NA
## ScreenResolutionIPS Panel Retina Display 2560x1600 3.746e-16
## ScreenResolutionIPS Panel Retina Display 2736x1824 NA
## ScreenResolutionIPS Panel Retina Display 2880x1800 NA
## ScreenResolutionIPS Panel Touchscreen / 4K Ultra HD 3840x2160 -3.640e-16
## ScreenResolutionIPS Panel Touchscreen 1366x768 1.721e-16
## ScreenResolutionIPS Panel Touchscreen 1920x1200 NA
## ScreenResolutionIPS Panel Touchscreen 2400x1600 NA
## ScreenResolutionIPS Panel Touchscreen 2560x1440 -1.352e-16
## ScreenResolutionQuad HD+ / Touchscreen 3200x1800 -6.432e-17
## ScreenResolutionQuad HD+ 3200x1800 3.142e-16
## ScreenResolutionTouchscreen / 4K Ultra HD 3840x2160 8.901e-16
## ScreenResolutionTouchscreen / Full HD 1920x1080 -3.041e-16
## ScreenResolutionTouchscreen / Quad HD+ 3200x1800 -5.287e-17
## ScreenResolutionTouchscreen 1366x768 8.036e-17
## ScreenResolutionTouchscreen 2256x1504 NA
## ScreenResolutionTouchscreen 2400x1600 NA
## ScreenResolutionTouchscreen 2560x1440 -2.512e-16
## CpuAMD A10-Series 9620P 2.5GHz -7.508e-17
## CpuAMD A10-Series A10-9620P 2.5GHz NA
## CpuAMD A12-Series 9700P 2.5GHz NA
## CpuAMD A12-Series 9720P 2.7GHz -1.552e-16
## CpuAMD A12-Series 9720P 3.6GHz NA
## CpuAMD A4-Series 7210 2.2GHz 4.255e-16
## CpuAMD A6-Series 7310 2GHz NA
## CpuAMD A6-Series 9220 2.5GHz -2.568e-16
## CpuAMD A6-Series 9220 2.9GHz 2.194e-16
## CpuAMD A6-Series A6-9220 2.5GHz NA
## CpuAMD A8-Series 7410 2.2GHz NA
## CpuAMD A9-Series 9410 2.9GHz NA
## CpuAMD A9-Series 9420 2.9GHz 1.504e-16
## CpuAMD A9-Series 9420 3GHz 3.037e-16
## CpuAMD A9-Series A9-9420 3GHz NA
## CpuAMD E-Series 6110 1.5GHz NA
## CpuAMD E-Series 7110 1.8GHz NA
## CpuAMD E-Series 9000 2.2GHz 6.113e-16
## CpuAMD E-Series 9000e 1.5GHz NA
## CpuAMD E-Series E2-6110 1.5GHz NA
## CpuAMD E-Series E2-9000 2.2GHz 3.585e-16
## CpuAMD E-Series E2-9000e 1.5GHz NA
## CpuAMD FX 8800P 2.1GHz NA
## CpuAMD FX 9830P 3GHz NA
## CpuAMD Ryzen 1600 3.2GHz -1.192e-15
## CpuAMD Ryzen 1700 3GHz -1.080e-15
## CpuIntel Atom x5-Z8300 1.44GHz NA
## CpuIntel Atom x5-Z8350 1.44GHz NA
## CpuIntel Atom X5-Z8350 1.44GHz NA
## CpuIntel Atom x5-Z8550 1.44GHz NA
## CpuIntel Atom Z8350 1.92GHz NA
## CpuIntel Celeron Dual Core 3205U 1.5GHz NA
## CpuIntel Celeron Dual Core 3855U 1.6GHz 5.788e-16
## CpuIntel Celeron Dual Core N3050 1.6GHz 2.468e-16
## CpuIntel Celeron Dual Core N3060 1.60GHz 3.660e-16
## CpuIntel Celeron Dual Core N3060 1.6GHz 3.349e-16
## CpuIntel Celeron Dual Core N3350 1.1GHz 4.611e-16
## CpuIntel Celeron Dual Core N3350 2.0GHz NA
## CpuIntel Celeron Dual Core N3350 2GHz 7.828e-16
## CpuIntel Celeron Quad Core N3160 1.6GHz NA
## CpuIntel Celeron Quad Core N3450 1.1GHz NA
## CpuIntel Celeron Quad Core N3710 1.6GHz NA
## CpuIntel Core i3 6006U 2.0GHz 7.283e-18
## CpuIntel Core i3 6006U 2.2GHz 3.880e-16
## CpuIntel Core i3 6006U 2GHz -2.125e-17
## CpuIntel Core i3 6100U 2.1GHz 3.766e-16
## CpuIntel Core i3 6100U 2.3GHz 4.672e-17
## CpuIntel Core i3 7100U 2.4GHz -4.518e-17
## CpuIntel Core i3 7130U 2.7GHz -1.647e-16
## CpuIntel Core i5 1.3GHz -9.132e-17
## CpuIntel Core i5 1.6GHz NA
## CpuIntel Core i5 1.8GHz NA
## CpuIntel Core i5 2.0GHz 3.654e-16
## CpuIntel Core i5 2.3GHz 1.843e-16
## CpuIntel Core i5 2.9GHz 7.328e-17
## CpuIntel Core i5 3.1GHz NA
## CpuIntel Core i5 6200U 2.3GHz -2.241e-16
## CpuIntel Core i5 6260U 1.8GHz -1.883e-16
## CpuIntel Core i5 6300HQ 2.3GHz 6.749e-17
## CpuIntel Core i5 6300U 2.4GHz -4.036e-16
## CpuIntel Core i5 6440HQ 2.6GHz NA
## CpuIntel Core i5 7200U 2.50GHz -3.054e-16
## CpuIntel Core i5 7200U 2.5GHz -3.103e-16
## CpuIntel Core i5 7200U 2.70GHz -1.811e-16
## CpuIntel Core i5 7200U 2.7GHz -9.488e-16
## CpuIntel Core i5 7300HQ 2.5GHz -2.545e-16
## CpuIntel Core i5 7300U 2.6GHz -3.789e-16
## CpuIntel Core i5 7440HQ 2.8GHz -5.118e-16
## CpuIntel Core i5 7500U 2.7GHz -1.884e-16
## CpuIntel Core i5 7Y54 1.2GHz -3.599e-16
## CpuIntel Core i5 7Y57 1.2GHz 2.086e-16
## CpuIntel Core i5 8250U 1.6GHz -3.321e-16
## CpuIntel Core i7 2.2GHz 2.866e-16
## CpuIntel Core i7 2.7GHz 1.766e-16
## CpuIntel Core i7 2.8GHz 6.965e-17
## CpuIntel Core i7 2.9GHz NA
## CpuIntel Core i7 6500U 2.50GHz -4.785e-16
## CpuIntel Core i7 6500U 2.5GHz -4.886e-16
## CpuIntel Core i7 6560U 2.2GHz -3.552e-16
## CpuIntel Core i7 6600U 2.6GHz -3.765e-16
## CpuIntel Core i7 6700HQ 2.6GHz -2.552e-16
## CpuIntel Core i7 6820HK 2.7GHz -3.062e-16
## CpuIntel Core i7 6820HQ 2.7GHz -3.769e-16
## CpuIntel Core i7 6920HQ 2.9GHz NA
## CpuIntel Core i7 7500U 2.5GHz NA
## CpuIntel Core i7 7500U 2.7GHz -5.094e-16
## CpuIntel Core i7 7560U 2.4GHz -9.662e-17
## CpuIntel Core i7 7600U 2.8GHz -5.788e-16
## CpuIntel Core i7 7660U 2.5GHz -6.036e-16
## CpuIntel Core i7 7700HQ 2.7GHz -6.559e-16
## CpuIntel Core i7 7700HQ 2.8GHz -4.313e-16
## CpuIntel Core i7 7820HK 2.9GHz -4.934e-16
## CpuIntel Core i7 7820HQ 2.9GHz 4.049e-16
## CpuIntel Core i7 7Y75 1.3GHz -1.852e-16
## CpuIntel Core i7 8550U 1.8GHz -4.975e-16
## CpuIntel Core i7 8650U 1.9GHz -5.201e-16
## CpuIntel Core M 1.1GHz 2.676e-16
## CpuIntel Core M 1.2GHz 5.613e-16
## CpuIntel Core M 6Y30 0.9GHz NA
## CpuIntel Core M 6Y54 1.1GHz NA
## CpuIntel Core M 6Y75 1.2GHz NA
## CpuIntel Core M 7Y30 1.0GHz NA
## CpuIntel Core M m3 1.2GHz NA
## CpuIntel Core M M3-6Y30 0.9GHz 7.614e-16
## CpuIntel Core M m3-7Y30 2.2GHz 3.030e-16
## CpuIntel Core M m7-6Y75 1.2GHz NA
## CpuIntel Core M M7-6Y75 1.2GHz NA
## CpuIntel Pentium Dual Core 4405U 2.1GHz 6.643e-16
## CpuIntel Pentium Dual Core 4405Y 1.5GHz NA
## CpuIntel Pentium Dual Core N4200 1.1GHz NA
## CpuIntel Pentium Quad Core N3700 1.6GHz -1.054e-17
## CpuIntel Pentium Quad Core N3710 1.6GHz 2.643e-16
## CpuIntel Pentium Quad Core N4200 1.1GHz 4.630e-16
## CpuIntel Xeon E3-1505M V6 3GHz -3.221e-16
## CpuIntel Xeon E3-1535M v5 2.9GHz NA
## CpuIntel Xeon E3-1535M v6 3.1GHz NA
## CpuSamsung Cortex A72&A53 2.0GHz NA
## Ram -1.604e-17
## Memory1.0TB Hybrid 5.967e-16
## Memory128GB Flash Storage 4.811e-16
## Memory128GB HDD NA
## Memory128GB SSD 4.148e-16
## Memory128GB SSD + 1TB HDD 2.342e-16
## Memory128GB SSD + 2TB HDD 1.404e-16
## Memory16GB Flash Storage 3.513e-16
## Memory16GB SSD NA
## Memory180GB SSD 3.613e-16
## Memory1TB HDD 4.259e-16
## Memory1TB HDD + 1TB HDD NA
## Memory1TB SSD -2.366e-17
## Memory1TB SSD + 1TB HDD 1.204e-16
## Memory240GB SSD NA
## Memory256GB Flash Storage 3.042e-16
## Memory256GB SSD 2.861e-16
## Memory256GB SSD + 1.0TB Hybrid 4.821e-18
## Memory256GB SSD + 1TB HDD 2.734e-16
## Memory256GB SSD + 256GB SSD 1.599e-16
## Memory256GB SSD + 2TB HDD 5.560e-17
## Memory256GB SSD + 500GB HDD -3.107e-16
## Memory2TB HDD 2.710e-16
## Memory32GB Flash Storage -3.446e-16
## Memory32GB HDD NA
## Memory32GB SSD NA
## Memory500GB HDD 4.946e-16
## Memory508GB Hybrid 5.658e-16
## Memory512GB Flash Storage NA
## Memory512GB SSD 1.205e-16
## Memory512GB SSD + 1.0TB Hybrid NA
## Memory512GB SSD + 1TB HDD 2.284e-16
## Memory512GB SSD + 256GB SSD NA
## Memory512GB SSD + 2TB HDD 3.571e-16
## Memory512GB SSD + 512GB SSD NA
## Memory64GB Flash Storage NA
## Memory64GB Flash Storage + 1TB HDD NA
## Memory64GB SSD NA
## Memory8GB SSD NA
## GpuAMD FirePro W4190M -1.218e-15
## GpuAMD FirePro W5130M NA
## GpuAMD FirePro W6150M 3.324e-16
## GpuAMD R17M-M1-70 NA
## GpuAMD R4 Graphics 3.261e-16
## GpuAMD Radeon 520 1.023e-16
## GpuAMD Radeon 530 1.594e-16
## GpuAMD Radeon 540 3.256e-16
## GpuAMD Radeon Pro 455 NA
## GpuAMD Radeon Pro 555 NA
## GpuAMD Radeon Pro 560 NA
## GpuAMD Radeon R2 NA
## GpuAMD Radeon R2 Graphics NA
## GpuAMD Radeon R3 NA
## GpuAMD Radeon R4 NA
## GpuAMD Radeon R4 Graphics NA
## GpuAMD Radeon R5 NA
## GpuAMD Radeon R5 430 NA
## GpuAMD Radeon R5 520 NA
## GpuAMD Radeon R5 M315 2.316e-16
## GpuAMD Radeon R5 M330 NA
## GpuAMD Radeon R5 M420 2.795e-16
## GpuAMD Radeon R5 M420X 2.299e-16
## GpuAMD Radeon R5 M430 5.921e-17
## GpuAMD Radeon R7 7.440e-16
## GpuAMD Radeon R7 Graphics NA
## GpuAMD Radeon R7 M360 NA
## GpuAMD Radeon R7 M365X 5.210e-16
## GpuAMD Radeon R7 M440 3.414e-16
## GpuAMD Radeon R7 M445 9.209e-17
## GpuAMD Radeon R7 M460 NA
## GpuAMD Radeon R7 M465 3.315e-16
## GpuAMD Radeon R9 M385 NA
## GpuAMD Radeon RX 540 NA
## GpuAMD Radeon RX 550 1.412e-16
## GpuAMD Radeon RX 560 NA
## GpuAMD Radeon RX 580 NA
## GpuARM Mali T860 MP4 NA
## GpuIntel Graphics 620 9.129e-17
## GpuIntel HD Graphics 3.646e-16
## GpuIntel HD Graphics 400 4.068e-16
## GpuIntel HD Graphics 405 1.743e-16
## GpuIntel HD Graphics 500 NA
## GpuIntel HD Graphics 505 NA
## GpuIntel HD Graphics 510 NA
## GpuIntel HD Graphics 515 -1.422e-16
## GpuIntel HD Graphics 520 3.178e-16
## GpuIntel HD Graphics 530 -9.717e-17
## GpuIntel HD Graphics 5300 NA
## GpuIntel HD Graphics 540 NA
## GpuIntel HD Graphics 6000 NA
## GpuIntel HD Graphics 615 NA
## GpuIntel HD Graphics 620 2.925e-16
## GpuIntel HD Graphics 620 1.610e-16
## GpuIntel HD Graphics 630 -5.272e-16
## GpuIntel Iris Graphics 540 NA
## GpuIntel Iris Graphics 550 NA
## GpuIntel Iris Plus Graphics 640 1.153e-16
## GpuIntel Iris Plus Graphics 650 NA
## GpuIntel Iris Pro Graphics NA
## GpuIntel UHD Graphics 620 2.366e-16
## GpuNvidia GeForce 150MX -5.546e-16
## GpuNvidia GeForce 920 2.286e-16
## GpuNvidia GeForce 920M 1.241e-16
## GpuNvidia GeForce 920MX 1.213e-16
## GpuNvidia GeForce 920MX 3.191e-16
## GpuNvidia GeForce 930M 3.036e-16
## GpuNvidia GeForce 930MX 2.542e-16
## GpuNvidia GeForce 930MX 2.600e-16
## GpuNvidia GeForce 940M NA
## GpuNvidia GeForce 940MX 1.711e-16
## GpuNvidia GeForce 960M -1.134e-15
## GpuNvidia GeForce GT 940MX 3.608e-16
## GpuNvidia GeForce GTX 1050 -6.727e-16
## GpuNvidia GeForce GTX 1050 Ti -6.890e-16
## GpuNvidia GeForce GTX 1050M -7.258e-16
## GpuNvidia GeForce GTX 1050Ti -6.469e-16
## GpuNvidia GeForce GTX 1060 -9.344e-16
## GpuNvidia GeForce GTX 1070 -1.098e-15
## GpuNvidia GeForce GTX 1070M -1.153e-15
## GpuNvidia GeForce GTX 1080 -1.394e-15
## GpuNvidia GeForce GTX 930MX NA
## GpuNvidia GeForce GTX 940M 1.302e-16
## GpuNvidia GeForce GTX 940MX 1.443e-16
## GpuNvidia GeForce GTX 950M NA
## GpuNvidia GeForce GTX 960 -8.064e-17
## GpuNvidia GeForce GTX 960<U+039C> -2.213e-16
## GpuNvidia GeForce GTX 960M NA
## GpuNvidia GeForce GTX 965M NA
## GpuNvidia GeForce GTX 970M NA
## GpuNvidia GeForce GTX 980 NA
## GpuNvidia GeForce GTX 980M NA
## GpuNvidia GeForce GTX1050 Ti NA
## GpuNvidia GeForce GTX1060 NA
## GpuNvidia GeForce GTX1080 NA
## GpuNvidia GeForce MX130 -9.470e-18
## GpuNvidia GeForce MX150 NA
## GpuNvidia GTX 980 SLI NA
## GpuNvidia Quadro 3000M NA
## GpuNvidia Quadro M1000M 1.259e-15
## GpuNvidia Quadro M1200 8.441e-16
## GpuNvidia Quadro M2000M NA
## GpuNvidia Quadro M2200 9.139e-16
## GpuNvidia Quadro M2200M NA
## GpuNvidia Quadro M3000M NA
## GpuNvidia Quadro M500M NA
## GpuNvidia Quadro M520M NA
## GpuNvidia Quadro M620 NA
## GpuNvidia Quadro M620M NA
## OpSysChrome OS NA
## OpSysLinux -1.795e-16
## OpSysMac OS X NA
## OpSysmacOS NA
## OpSysNo OS -2.033e-16
## OpSysWindows 10 -3.778e-16
## OpSysWindows 10 S NA
## OpSysWindows 7 -5.266e-16
## Weight -6.095e-17
## Frequenza NA
## Risoluzione1440x900 NA
## Risoluzione1600x900 NA
## Risoluzione1920x1080 NA
## Risoluzione1920x1200 NA
## Risoluzione2160x1440 NA
## Risoluzione2256x1504 NA
## Risoluzione2304x1440 NA
## Risoluzione2400x1600 NA
## Risoluzione2560x1440 NA
## Risoluzione2560x1600 NA
## Risoluzione2736x1824 NA
## Risoluzione2880x1800 NA
## Risoluzione3200x1800 NA
## Risoluzione3840x2160 NA
## Pixel NA
## SolidStateDiskTrue NA
## LogPrice 1.000e+00
## Std. Error
## (Intercept) 1.506e-15
## X 3.068e-20
## CompanyApple 1.323e-15
## CompanyAsus 1.003e-15
## CompanyChuwi 1.357e-15
## CompanyDell 5.597e-16
## CompanyFujitsu 1.005e-15
## CompanyGoogle 1.013e-15
## CompanyHP 5.611e-16
## CompanyHuawei 1.003e-15
## CompanyLenovo 1.333e-15
## CompanyLG 1.014e-15
## CompanyMediacom 1.306e-15
## CompanyMicrosoft 9.844e-16
## CompanyMSI 8.813e-16
## CompanyRazer 1.367e-15
## CompanySamsung 8.111e-16
## CompanyToshiba 1.003e-15
## CompanyVero 1.374e-15
## CompanyXiaomi 9.727e-16
## Product14-am079na (N3710/8GB/2TB/W10) 8.613e-16
## Product15-AC110nv (i7-6500U/6GB/1TB/Radeon 7.993e-16
## Product15-AY023na (N3710/8GB/2TB/W10) 8.581e-16
## Product15-ay047nv (i3-6006U/6GB/1TB/Radeon 8.490e-16
## Product15-BA015wm (E2-7110/4GB/500GB/W10) 1.218e-15
## Product15-ba043na (A12-9700P/8GB/2TB/W10) 1.217e-15
## Product15-bs002nv (i3-6006U/4GB/128GB/FHD/W10) 8.450e-16
## Product15-bs005nv (i3-6006U/4GB/1TB 8.613e-16
## Product15-bs011nv (i7-7500U/4GB/500GB/Radeon 8.603e-16
## Product15-bs012nv (i7-7500U/8GB/1TB/Radeon 8.639e-16
## Product15-bs015dx (i5-7200U/8GB/1TB/W10) 8.542e-16
## Product15-bs017nv (i7-7500U/8GB/256GB/Radeon 8.626e-16
## Product15-bs018nq (i3-6006U/4GB/500GB/FHD/No 8.491e-16
## Product15-bs023nv (i3-6006U/4GB/1TB/FHD/W10) 8.470e-16
## Product15-bs024nv (i5-7200U/8GB/128GB/W10) 8.431e-16
## Product15-bs025nv (i5-7200U/8GB/256GB/W10) 8.437e-16
## Product15-BS026nv (i5-7200U/8GB/256GB/Radeon 8.591e-16
## Product15-BS028nv (i3-6006U/4GB/1TB/Radeon 8.578e-16
## Product15-bs053od (i7-7500U/6GB/1TB/W10) 8.434e-16
## Product15-bs078cl (i7-7500U/8GB/2TB/W10) 8.450e-16
## Product15-BS078nr (i7-7500U/8GB/1TB/W10) 8.437e-16
## Product15-BS101nv (i7-8550U/8GB/256GB/FHD/W10) 8.562e-16
## Product15-BS103nv (i5-8250U/6GB/256GB/Radeon 8.677e-16
## Product15-bs190od (i5-8250U/4GB/1TB/W10) 8.542e-16
## Product15-bw000nv (E2-9000e/4GB/500GB/Radeon 1.218e-15
## Product15-bw002nv (A6-9220/4GB/256GB/Radeon 1.265e-15
## Product15-bw003nv (A9-Series-9420/4GB/256GB/FHD/W10) 8.531e-16
## Product15-BW004nv (A9-9420/4GB/256GB/Radeon 9.295e-16
## Product15-bw007nv (A10-9620P/6GB/128GB/Radeon 1.260e-15
## Product15-bw009nv (A12-9720P/6GB/1TB/Radeon 9.146e-16
## Product15-bw011nv (A6-9220/4GB/1TB/FHD/W10) 1.239e-15
## Product15-BW037na (A9-9420/4GB/1TB/Radeon 9.291e-16
## Product15-BW091ND (A9-9420/6GB/1TB 1.268e-15
## Product15-BW094nd (A6-9220/8GB/128GB/W10) 1.216e-15
## Product15-cb003na (i5-7300HQ/8GB/1TB 5.966e-16
## Product15-cd005nv (A9-9420/6GB/256GB/Radeon 1.259e-15
## Product15-ra044nv (N3060/4GB/500GB/W10) 8.507e-16
## Product15-rb013nv (E2-9000e/4GB/500GB/W10) 1.218e-15
## Product17-ak001nv (A6-9220/4GB/500GB/Radeon 1.290e-15
## Product17-ak002nv (A10-9620P/6GB/2TB/Radeon 9.152e-16
## Product17-AK091ND (A9-9420/8GB/1TB/W10) 8.467e-16
## Product17-bs000nv I3 8.090e-16
## Product17-bs001nv (i5-7200U/6GB/2TB/Radeon 8.640e-16
## Product17-BS037cl (i3-6006U/8GB/1TB/W10) 8.378e-16
## Product17-BS092ND (i3-6006U/8GB/256GB/W10) 8.356e-16
## Product17-X047na (i3-6006U/8GB/1TB/W10) 8.382e-16
## Product17-Y002nv (A10-9600P/6GB/2TB/Radeon 1.290e-15
## Product250 G4 8.461e-16
## Product250 G5 8.310e-16
## Product250 G6 8.247e-16
## Product255 G6 1.219e-15
## Product320-15ISK (i3-6006U/4GB/1TB/GeForce 6.261e-16
## ProductA541NA-GO342 (N3350/4GB/500GB/Linux) 3.861e-16
## ProductA715-71G-59DH (i5-7300HQ/8GB/1TB/GeForce 8.206e-16
## ProductAlienware 15 6.628e-16
## ProductAlienware 17 6.735e-16
## ProductAspire 1 1.308e-15
## ProductAspire 3 9.920e-16
## ProductAspire 5 9.746e-16
## ProductAspire 7 7.933e-16
## ProductAspire A315-31 1.020e-15
## ProductAspire A315-51 9.947e-16
## ProductAspire A515-51G 9.830e-16
## ProductAspire A515-51G-32MX 1.005e-15
## ProductAspire A515-51G-37JS 1.004e-15
## ProductAspire A515-51G-59QF 9.791e-16
## ProductAspire A517-51G 9.684e-16
## ProductAspire A715-71G 8.104e-16
## ProductAspire E5-475 1.011e-15
## ProductAspire E5-575 9.978e-16
## ProductAspire E5-576G 9.872e-16
## ProductAspire E5-774G 9.970e-16
## ProductAspire ES1-523 1.327e-15
## ProductAspire ES1-531 9.877e-16
## ProductAspire ES1-533 1.026e-15
## ProductAspire ES1-572 9.950e-16
## ProductAspire F5-573G 9.776e-16
## ProductAspire F5-573G-510L 9.810e-16
## ProductAspire R7 1.008e-15
## ProductAspire VX5-591G 8.249e-16
## ProductB51-80 (i5-6200U/8GB/1008GB/Radeon 6.533e-16
## ProductB51-80 (i5-6200U/8GB/1TB/Radeon 6.263e-16
## ProductB51-80 (i7-6500U/4GB/1008GB/FHD/W7) 6.390e-16
## ProductB51-80 (i7-6500U/8GB/1008GB/Radeon 6.556e-16
## ProductBlade Pro 9.475e-16
## ProductBlade Stealth NA
## ProductC740-C9QX (3205U/2GB/32GB/Chrome 1.358e-15
## ProductCB5-132T-C9KK (N3160/4GB/32GB/Chrome 1.387e-15
## ProductChromebook 11 9.043e-16
## ProductChromebook 13 1.291e-15
## ProductChromebook 14 9.175e-16
## ProductChromebook 15 1.347e-15
## ProductChromebook 3 6.599e-16
## ProductChromebook C202SA 4.362e-16
## ProductChromebook C731-C78G 9.407e-16
## ProductChromebook C738T-C2EJ 9.919e-16
## ProductChromebook C910-C2ST 1.346e-15
## ProductChromebook CB5-571-C1DZ 1.478e-15
## ProductChromebook Flip 7.126e-16
## ProductChromebook N23 6.975e-16
## ProductChromebook Plus 9.994e-16
## ProductChromebook X360 9.537e-16
## ProductE402WA-GA007T (E2-6110/4GB/64GB/W10 6.877e-16
## ProductE402WA-GA010T (E2-6110/2GB/32GB/W10) 6.917e-16
## ProductE5 774G 9.930e-16
## ProductEliteBook 1030 1.230e-15
## ProductElitebook 1040 8.381e-16
## ProductEliteBook 1040 8.233e-16
## ProductElitebook 820 8.314e-16
## ProductEliteBook 820 8.276e-16
## ProductElitebook 840 8.294e-16
## ProductEliteBook 840 8.208e-16
## ProductElitebook 850 8.288e-16
## ProductEliteBook 850 8.200e-16
## ProductElitebook Folio 1.263e-15
## ProductEliteBook Folio 1.221e-15
## ProductEliteBook x360 8.348e-16
## ProductENVY - 8.408e-16
## ProductEnvy 13-AB002nv 8.401e-16
## ProductEnvy 13-AB020nr 8.433e-16
## ProductEnvy 13-AB077cl 8.463e-16
## ProductEnvy 13-AD007nv 8.411e-16
## ProductEnvy 13-ad009n 8.091e-16
## ProductEnvy 17-U275cl 8.216e-16
## ProductEnvy x360 8.541e-16
## ProductES1-523-84K7 (A8-7410/8GB/256GB/FHD/W10) 1.331e-15
## ProductExtensa EX2540 1.006e-15
## ProductExtensa EX2540-58KR 1.005e-15
## ProductF756UX-T4201D (i7-7500U/8GB/128GB 3.125e-16
## ProductFlex 5 6.254e-16
## ProductFlexBook Edge 6.511e-16
## ProductFX502VM-AS73 (i7-7700HQ/16GB/1TB 5.573e-16
## ProductFX502VM-DM105T (i7-6700HQ/8GB/1TB/GeForce 6.839e-16
## ProductFX502VM-DM560T (i7-7700HQ/8GB/1TB 4.610e-16
## ProductFX503VD-E4022T (i7-7700HQ/8GB/1TB/GeForce 5.924e-16
## ProductFX503VM-E4007T (i7-7700HQ/16GB/1TB 5.791e-16
## ProductFX550IK-DM018T (FX-9830P/8GB/1TB/Radeon 6.286e-16
## ProductFX553VD-DM627T (i5-7300HQ/8GB/1TB 5.746e-16
## ProductFX553VD-FY647T (i7-7700HQ/8GB/256GB/GeForce 5.950e-16
## ProductFX753VD-GC007T (i7-7700HQ/8GB/1TB 5.943e-16
## ProductFX753VD-GC071T (i7-7700HQ/8GB/1TB/GeForce 5.945e-16
## ProductFX753VD-GC086T (i5-7300HQ/8GB/1TB 5.911e-16
## ProductFX753VD-GC461T (i7-7700HQ/16GB/1TB 5.974e-16
## ProductFX753VE-GC093 (i7-7700HQ/12GB/1TB/GeForce 5.909e-16
## ProductFX753VE-GC155T (i7-7700HQ/16GB/1TB 4.661e-16
## ProductG701VO-IH74K (i7-6820HK/32GB/2x 6.396e-16
## ProductG752VY-GC162T (i7-6700HQ/16GB/1TB 5.430e-16
## ProductGE62 Apache 5.254e-16
## ProductGE63VR 7RE 4.355e-16
## ProductGE63VR 7RF 4.517e-16
## ProductGE72 Apache 5.334e-16
## ProductGE72MVR 7RG 4.377e-16
## ProductGE72VR 6RF 4.390e-16
## ProductGE72VR Apache 4.376e-16
## ProductGE73VR 7RE 4.409e-16
## ProductGE73VR 7RF 4.566e-16
## ProductGL553VE-FY082T (i7-7700HQ/8GB/1TB 5.865e-16
## ProductGL62 6QF 5.247e-16
## ProductGL62M (i5-7300HQ/8GB/1TB 4.291e-16
## ProductGL62M 7RD 4.070e-16
## ProductGL62M 7RDX 4.232e-16
## ProductGL62M 7REX 4.325e-16
## ProductGL72M 7RDX 4.102e-16
## ProductGL72M 7REX 4.179e-16
## ProductGP62 7RDX 4.272e-16
## ProductGP62M 7RDX 4.234e-16
## ProductGP62M 7REX 4.358e-16
## ProductGP62M Leopard 4.236e-16
## ProductGP62MVR 6RF 4.781e-16
## ProductGP72M 7REX 4.383e-16
## ProductGP72MVR 7RFX 4.392e-16
## ProductGP72VR Leopard 4.387e-16
## ProductGram 14Z970 2.861e-16
## ProductGram 15Z970 2.828e-16
## ProductGram 15Z975 NA
## ProductGS40 Phantom 5.232e-16
## ProductGS43VR 7RE 4.390e-16
## ProductGS60 Ghost 5.319e-16
## ProductGS63VR 6RF 4.776e-16
## ProductGS63VR 7RF 4.222e-16
## ProductGS63VR 7RG 4.583e-16
## ProductGS70 Stealth 5.308e-16
## ProductGS73VR 7RF 4.393e-16
## ProductGS73VR 7RG 4.641e-16
## ProductGS73VR Stealth 4.742e-16
## ProductGT62VR 6RD 4.791e-16
## ProductGT62VR 7RE 4.537e-16
## ProductGT72VR Dominator 4.657e-16
## ProductGT73EVR 7RE 4.811e-16
## ProductGT73VR Titan 4.995e-16
## ProductGT80S 6QE 6.624e-16
## ProductGT80S 6QF-074US 9.174e-16
## ProductGV62 7RD-1686NL 4.259e-16
## ProductGV62M 7RD 4.253e-16
## ProductIdeaPad 100S-14IBR 6.761e-16
## ProductIdeaPad 110-15IBR 4.756e-16
## ProductIdeaPad 110-15ISK 5.880e-16
## ProductIdeaPad 110-17ACL 3.165e-16
## ProductIdeaPad 120S-14IAP 6.861e-16
## ProductIdeaPad 300-17ISK 6.854e-16
## ProductIdeaPad 310-15ABR 2.649e-16
## ProductIdeaPad 310-15IKB 5.991e-16
## ProductIdeapad 310-15ISK 6.084e-16
## ProductIdeaPad 310-15ISK 5.896e-16
## ProductIdeaPad 320-14IAP 6.507e-16
## ProductIdeaPad 320-15ABR 3.286e-16
## ProductIdeaPad 320-15AST 3.806e-16
## ProductIdeapad 320-15IAP 6.517e-16
## ProductIdeaPad 320-15IAP 6.164e-16
## ProductIdeaPad 320-15IKB 5.864e-16
## ProductIdeapad 320-15IKBN 6.038e-16
## ProductIdeaPad 320-15IKBN 5.812e-16
## ProductIdeapad 320-15IKBR 6.195e-16
## ProductIdeapad 320-15ISK 6.279e-16
## ProductIdeaPad 320-15ISK 5.820e-16
## ProductIdeaPad 320-17IKB 6.108e-16
## ProductIdeaPad 320-17IKBR 6.114e-16
## ProductIdeaPad 320-17ISK 6.324e-16
## ProductIdeaPad 320s-14IKB 6.342e-16
## ProductIdeaPad 500-15ISK 6.559e-16
## ProductIdeaPad 510-15IKB 5.932e-16
## ProductIdeaPad 510-15ISK 6.174e-16
## ProductIdeapad 510S-13IKB 6.170e-16
## ProductIdeaPad 510s-14IKB 6.296e-16
## ProductIdeapad 520-15IKBR 6.068e-16
## ProductIdeaPad 520s-14IKB 6.056e-16
## ProductIdeaPad 520S-14IKB 6.360e-16
## ProductIdeapad 700-15ISK 8.169e-16
## ProductIdeaPad 720S-13IKB 6.204e-16
## ProductIdeaPad 720S-14IKB 6.194e-16
## ProductIdeaPad Y700-15ACZ 3.239e-16
## ProductIdeaPad Y700-15ISK 7.691e-16
## ProductIdeaPad Y900-17ISK 8.167e-16
## ProductIdeaPad Y910-17ISK 1.091e-15
## ProductInspiron 3168 9.191e-16
## ProductInspiron 3179 1.262e-15
## ProductInspiron 3552 9.048e-16
## ProductInspiron 3567 8.665e-16
## ProductInspiron 3576 8.903e-16
## ProductInspiron 5368 8.785e-16
## ProductInspiron 5370 8.924e-16
## ProductInspiron 5378 8.811e-16
## ProductInspiron 5379 8.763e-16
## ProductInspiron 5567 8.829e-16
## ProductInspiron 5568 8.955e-16
## ProductInspiron 5570 8.854e-16
## ProductInspiron 5577 6.411e-16
## ProductInspiron 5578 8.783e-16
## ProductInspiron 5579 8.745e-16
## ProductInspiron 5767 9.059e-16
## ProductInspiron 5770 8.956e-16
## ProductInspiron 7378 8.817e-16
## ProductInspiron 7559 7.413e-16
## ProductInspiron 7560 8.764e-16
## ProductInspiron 7567 6.421e-16
## ProductInspiron 7570 8.693e-16
## ProductInspiron 7577 6.408e-16
## ProductInspiron 7579 8.792e-16
## ProductInspiron 7773 6.810e-16
## ProductInspiron 7779 8.873e-16
## ProductInsprion 5767 8.915e-16
## ProductK146 (N3350/4GB/32GB/W10) 7.173e-16
## ProductK147 (N3350/4GB/32GB/FHD/W10) 7.234e-16
## ProductK556UR-DM621T (i7-7500U/8GB/256GB/GeForce 3.103e-16
## ProductK756UX-T4340T (i5-7200U/8GB/500GB 3.752e-16
## ProductL403NA-GA013TS (N3350/4GB/32GB/W10) 4.827e-16
## ProductL502NA-GO052T (N3350/4GB/128GB/W10) 3.779e-16
## ProductLapBook 12.3 3.514e-16
## ProductLapbook 15,6 2.579e-16
## ProductLapBook 15.6" NA
## ProductLaptop MSI 6.560e-16
## ProductLatitude 3180 9.220e-16
## ProductLatitude 3380 8.754e-16
## ProductLatitude 3480 8.717e-16
## ProductLatitude 3570 8.856e-16
## ProductLatitude 3580 8.658e-16
## ProductLatitude 5289 8.918e-16
## ProductLatitude 5480 8.582e-16
## ProductLatitude 5490 8.821e-16
## ProductLatitude 5580 8.594e-16
## ProductLatitude 5590 8.784e-16
## ProductLatitude 7280 8.775e-16
## ProductLatitude 7390 8.864e-16
## ProductLatitude 7480 8.703e-16
## ProductLatitude E5270 8.757e-16
## ProductLatitude E5470 8.889e-16
## ProductLatitude E5570 8.663e-16
## ProductLatitude E7270 8.878e-16
## ProductLatitude E7470 8.721e-16
## ProductLegion Y520-15IKBN 9.240e-16
## ProductLegion Y720-15IKB 9.233e-16
## ProductLenovo IdeaPad 7.189e-16
## ProductLeopard GP72M 4.367e-16
## ProductLifeBook A556 2.642e-16
## ProductLifebook A557 2.592e-16
## ProductLifeBook A557 NA
## ProductMacBook 12" 2.901e-16
## ProductMacbook Air 3.861e-16
## ProductMacBook Air 3.401e-16
## ProductMacBook Pro NA
## ProductMateBook X NA
## ProductMi Notebook NA
## ProductN23 (N3060/4GB/128GB/W10) 6.488e-16
## ProductN42-20 Chromebook 5.248e-16
## ProductNitro 5 8.202e-16
## ProductNitro AN515-51 8.198e-16
## ProductNoteb Pav 8.351e-16
## ProductNotebook 9 5.512e-16
## ProductNotebook Odyssey NA
## ProductOmen - 6.371e-16
## ProductOmen 15-AX205na 6.077e-16
## ProductOmen 15-ce006nv 6.106e-16
## ProductOmen 15-ce007nv 6.119e-16
## ProductOmen 17-an006nv 6.313e-16
## ProductOmen 17-AN010nv 6.305e-16
## ProductOmen 17-an012dx 7.682e-16
## ProductOmen 17-W006na 7.067e-16
## ProductOmen 17-w207nv 6.365e-16
## ProductOmen 17-w212nv 6.183e-16
## ProductOmen 17-W295 6.227e-16
## ProductPavilion 14-BK001nv 8.381e-16
## ProductPavilion 15-AW003nv 1.285e-15
## ProductPavilion 15-BC000nv 6.562e-16
## ProductPavilion 15-cb003nv 6.151e-16
## ProductPavilion 15-CK000nv 8.545e-16
## ProductPavilion Power 5.956e-16
## ProductPavilion x360 8.589e-16
## ProductPavilion X360 8.492e-16
## ProductPixelbook (Core NA
## ProductPL60 7RD NA
## ProductPortege A30-C-1CZ 2.806e-16
## ProductPortege X20W-D-10V 2.981e-16
## ProductPortege X30-D-10J 2.749e-16
## ProductPortege X30-D-10K 2.833e-16
## ProductPortege X30-D-10L 2.991e-16
## ProductPortege X30-D-10V 2.776e-16
## ProductPortege X30-D-10X 2.819e-16
## ProductPortege Z30-C-16H 2.861e-16
## ProductPortege Z30-C-16J 2.812e-16
## ProductPortégé Z30-C-16K 2.859e-16
## ProductPortege Z30-C-16L 2.847e-16
## ProductPortege Z30-C-16P 2.868e-16
## ProductPortege Z30-C-16Z 2.905e-16
## ProductPortégé Z30-C-188 2.858e-16
## ProductPortege Z30-C-1CV 2.885e-16
## ProductPortege Z30-C-1CW 2.842e-16
## ProductPortege Z30T-C-133 2.935e-16
## ProductPrecision 3510 8.988e-16
## ProductPrecision 3520 5.348e-16
## ProductPrecision 5520 6.010e-16
## ProductPrecision 7520 6.272e-16
## ProductPrecision 7720 7.397e-16
## ProductPrecision M5520 4.931e-16
## ProductPredator 17 8.119e-16
## ProductPredator G9-793 8.268e-16
## ProductPro P2540UA-AB51 2.817e-16
## ProductPro P2540UA-XO0192R 2.854e-16
## ProductPro P2540UA-XO0198T 2.886e-16
## ProductPro P2540UA-XS51 2.808e-16
## ProductProbook 430 8.317e-16
## ProductProBook 430 8.260e-16
## ProductProbook 440 8.267e-16
## ProductProBook 440 8.260e-16
## ProductProbook 450 8.285e-16
## ProductProBook 450 8.227e-16
## ProductProbook 470 8.390e-16
## ProductProBook 470 8.306e-16
## ProductProbook 640 8.316e-16
## ProductProBook 640 8.277e-16
## ProductProbook 650 8.309e-16
## ProductProBook 650 8.288e-16
## ProductProBook x360 8.968e-16
## ProductQ304UA-BHI5T11 (i5-7200U/6GB/1TB/FHD/W10) 3.060e-16
## ProductQ524UQ-BHI7T15 (i7-7500U/12GB/2TB/GeForce 3.004e-16
## ProductQ534UX-BHI7T19 (i7-7500U/16GB/2TB 3.880e-16
## ProductR417NA-RS01 (N3350/4GB/32GB/W10) 4.813e-16
## ProductR558UA-DM966T (i5-7200U/8GB/128GB/FHD/W10) 3.706e-16
## ProductROG G701VI 8.283e-16
## ProductRog G701VIK-BA060T 6.203e-16
## ProductROG G701VO 6.328e-16
## ProductROG G703VI-E5062T 6.471e-16
## ProductRog G752VL-GC088D 5.385e-16
## ProductRog G752VL-UH71T 5.367e-16
## ProductRog G752VS-BA171T 6.968e-16
## ProductROG G752VSK-GC493T 4.933e-16
## ProductRog G752VT-GC073T 5.350e-16
## ProductRog G752VY-GC229T 5.574e-16
## ProductRog GL502VM-DS74 5.731e-16
## ProductRog GL502VS 6.746e-16
## ProductRog GL552VW-CN470T 5.141e-16
## ProductRog GL552VW-DM201T 5.188e-16
## ProductRog GL553VE-DS74 5.910e-16
## ProductROG GL553VE-FY022 5.946e-16
## ProductRog GL553VE-FY052T 5.959e-16
## ProductRog GL702VM-GC017T 6.973e-16
## ProductRog GL702VM-GC354T 5.904e-16
## ProductRog GL702VS-BA023T 5.743e-16
## ProductRog GL702VS-GC095T 5.747e-16
## ProductROG GL703VD-GC028T 5.977e-16
## ProductRog GL752VW-T4308T 5.231e-16
## ProductRog GL753VD-GC042T 5.955e-16
## ProductRog GL753VD-GC082T 5.837e-16
## ProductRog GL753VE-DS74 5.922e-16
## ProductRog GL753VE-GC070T 5.921e-16
## ProductRog Strix 5.584e-16
## ProductROG Strix 5.566e-16
## ProductROG Zephyrus 4.604e-16
## ProductSatellite Pro 1.987e-16
## ProductSmartBook 130 3.389e-16
## ProductSmartBook 140 3.411e-16
## ProductSmartBook 141 3.020e-16
## ProductSmartbook 142 3.875e-16
## ProductSmartBook Edge NA
## ProductSP315-51 (i7-7500U/12GB/1TB/FHD/W10) 1.009e-15
## ProductSP714-51 (i7-7Y75/8GB/256GB/FHD/W10) 1.017e-15
## ProductSpectre 13-V100nv 8.401e-16
## ProductSpectre 13-V111dx 8.457e-16
## ProductSpectre Pro 8.281e-16
## ProductSpectre x360 8.296e-16
## ProductSpectre X360 8.405e-16
## ProductSpin 3 1.009e-15
## ProductSpin 5 1.011e-15
## ProductSpin SP111-31 1.319e-15
## ProductStream 11-Y000na 9.076e-16
## ProductStream 14-AX000nv 9.059e-16
## ProductStream 14-AX001nv 9.044e-16
## ProductStream 14-AX040wm 8.906e-16
## ProductSurface Laptop NA
## ProductSwift 3 9.971e-16
## ProductSwift 7 1.024e-15
## ProductSwift SF114-31-P5HY 1.021e-15
## ProductTecra A40-C-1DF 2.731e-16
## ProductTecra A40-C-1E5 3.168e-16
## ProductTecra A40-C-1KF 2.740e-16
## ProductTecra A50-C-1ZV 2.670e-16
## ProductTecra A50-C-218 2.980e-16
## ProductTecra A50-C-21G 2.989e-16
## ProductTecra A50-D-11D 2.599e-16
## ProductTecra A50-D-11M 2.601e-16
## ProductTecra X40-D-10G 2.801e-16
## ProductTecra X40-D-10H 2.842e-16
## ProductTecra X40-D-10Z 2.776e-16
## ProductTecra Z40-C-12X 2.753e-16
## ProductTecra Z40-C-12Z 2.714e-16
## ProductTecra Z40-C-136 2.844e-16
## ProductTecra Z40-C-161 3.257e-16
## ProductTecra Z50-C-140 3.121e-16
## ProductTecra Z50-C-144 2.659e-16
## ProductTecra Z50-D-10E NA
## ProductThinkpad 13 6.079e-16
## ProductThinkPad 13 5.934e-16
## ProductThinkpad E470 6.008e-16
## ProductThinkPad E470 6.059e-16
## ProductThinkPad E480 6.153e-16
## ProductThinkpad E570 5.948e-16
## ProductThinkPad E570 5.950e-16
## ProductThinkPad E580 6.463e-16
## ProductThinkPad L460 6.170e-16
## ProductThinkPad L470 5.914e-16
## ProductThinkpad L560 6.107e-16
## ProductThinkPad L570 5.946e-16
## ProductThinkPad P40 6.587e-16
## ProductThinkpad P50 8.993e-16
## ProductThinkpad P51 3.423e-16
## ProductThinkPad P51 1.228e-15
## ProductThinkpad P51s 1.042e-15
## ProductThinkPad P51s 1.032e-15
## ProductThinkPad P70 8.995e-16
## ProductThinkpad P71 7.128e-16
## ProductThinkpad T460 6.004e-16
## ProductThinkPad T460 6.068e-16
## ProductThinkpad T460p 8.099e-16
## ProductThinkpad T460s 6.203e-16
## ProductThinkPad T460s 6.291e-16
## ProductThinkpad T470 6.072e-16
## ProductThinkPad T470 6.010e-16
## ProductThinkpad T470p 1.026e-15
## ProductThinkPad T470p 7.165e-16
## ProductThinkpad T470s 6.186e-16
## ProductThinkPad T470s 5.993e-16
## ProductThinkpad T560 6.228e-16
## ProductThinkPad T560 6.138e-16
## ProductThinkpad T570 9.812e-16
## ProductThinkPad T570 6.018e-16
## ProductThinkpad X1 6.203e-16
## ProductThinkPad X1 6.107e-16
## ProductThinkpad X260 6.557e-16
## ProductThinkpad X270 6.062e-16
## ProductThinkPad X270 6.107e-16
## ProductThinkpad Yoga 6.233e-16
## ProductThinkPad Yoga 6.106e-16
## ProductTMX349-G2-M-50FS (i5-7200U/8GB/256GB/FHD/W10) 1.005e-15
## ProductTP501UA-CJ131T (i5-7200U/8GB/1TB/W10) 3.272e-16
## ProductTravelMate B 1.008e-15
## ProductTravelMate B117-M 1.010e-15
## ProductTravelMate P238-M 1.012e-15
## ProductTravelMate P259-G2 1.005e-15
## ProductUX410UA-GV097T (i3-7100U/4GB/256GB/FHD/W10) 2.889e-16
## ProductUX410UA-GV350T (i5-8250U/8GB/256GB/FHD/W10) 2.854e-16
## ProductUX430UQ-GV209R (i7-7500U/8GB/256GB/GeForce 2.681e-16
## ProductUX510UX-CN269T (i7-7500U/8GB/256GB 2.949e-16
## ProductV110-15IAP (N3350/4GB/128GB/No 6.565e-16
## ProductV110-15IAP (N3350/4GB/1TB/No 6.534e-16
## ProductV110-15IKB (i5-7200U/4GB/128GB/W10) 6.055e-16
## ProductV110-15ISK (3855U/4GB/500GB/W10) 6.511e-16
## ProductV110-15ISK (i3-6006U/4GB/128GB/W10) 6.084e-16
## ProductV110-15ISK (i3-6006U/4GB/1TB/No 6.106e-16
## ProductV110-15ISK (i3-6006U/4GB/1TB/Radeon 6.118e-16
## ProductV110-15ISK (i3-6006U/4GB/500GB/W10) 6.043e-16
## ProductV110-15ISK (i5-6200U/4GB/128GB/W10) 6.072e-16
## ProductV110-15ISK (i5-6200U/4GB/500GB/No 6.056e-16
## ProductV110-15ISK (i5-6200U/4GB/500GB/W10) 6.039e-16
## ProductV131 (X5-Z8350/4GB/32GB/FHD/W10) 2.608e-16
## ProductV142 (X5-Z8350/2GB/32GB/W10) NA
## ProductV310-15IKB (i5-7200U/4GB/1TB/FHD/W10) 6.468e-16
## ProductV310-15IKB (i5-7200U/4GB/1TB/No 6.067e-16
## ProductV310-15IKB (i5-7200U/8GB/1TB 6.198e-16
## ProductV310-15IKB (i7-7500U/4GB/1TB/FHD/W10) 6.075e-16
## ProductV310-15ISK (i3-6006U/4GB/128GB/FHD/No 6.112e-16
## ProductV310-15ISK (i3-6006U/4GB/1TB/FHD/W10) 6.085e-16
## ProductV310-15ISK (i3-6006U/4GB/500GB/No 6.080e-16
## ProductV310-15ISK (i5-6200U/4GB/1TB/FHD/No 6.094e-16
## ProductV310-15ISK (i5-7200U/4GB/1TB/FHD/W10) 6.063e-16
## ProductV310-15ISK (i5-7200U/8GB/1TB 6.143e-16
## ProductV320-17ISK (i3-6006U/4GB/500GB/FHD/No 6.131e-16
## ProductV330-15IKB (i3-7130U/4GB/128GB/FHD/W10) 6.268e-16
## ProductV330-15IKB (i5-8250U/4GB/256GB/FHD/W10) 6.096e-16
## ProductV330-15IKB (i5-8250U/4GB/500GB/FHD/W10) 6.077e-16
## ProductV330-15IKB (i5-8250U/8GB/256GB/FHD/W10) 6.072e-16
## ProductV330-15IKB (i7-8550U/8GB/256GB/FHD/W10) 6.074e-16
## ProductV510-15IKB (i5-7200U/8GB/256GB/FHD/No 6.117e-16
## ProductVivoBook E12 5.041e-16
## ProductVivobook E200HA 7.591e-16
## ProductVivoBook E201NA 5.048e-16
## ProductVivoBook E403NA 4.624e-16
## ProductVivoBook Flip 5.038e-16
## ProductVivoBook L402NA 4.789e-16
## ProductVivobook Max 6.112e-16
## ProductVivoBook Max 2.376e-16
## ProductVivoBook Pro 5.595e-16
## ProductVivoBook S14 2.874e-16
## ProductVivoBook S15 2.108e-16
## ProductVivoBook X540YA-XX519T 6.147e-16
## ProductVivobook X541UV-DM1217T 3.245e-16
## ProductVostro 3559 8.773e-16
## ProductVostro 3568 8.635e-16
## ProductVostro 5370 8.838e-16
## ProductVostro 5468 8.711e-16
## ProductVostro 5471 8.830e-16
## ProductVostro 5568 8.622e-16
## ProductX505BP-BR019T (A9-9420/4GB/1TB/Radeon 3.691e-16
## ProductX540SA-RBPDN09 (N3710/4GB/1TB/W10) 3.242e-16
## ProductX540UA-DM186 (i3-6006U/4GB/1TB/FHD/Linux) 2.915e-16
## ProductX541NA (N3350/4GB/1TB/FHD/W10) 3.759e-16
## ProductX541NA (N3350/4GB/1TB/Linux) 3.813e-16
## ProductX541NA (N4200/4GB/1TB/W10) 3.490e-16
## ProductX541NA-GO020T (N3350/4GB/1TB/W10) 3.790e-16
## ProductX541NA-GO121 (N4200/4GB/1TB/Linux) 3.526e-16
## ProductX541NA-GO414T (N3350/8GB/1TB/W10) 3.751e-16
## ProductX541NA-PD1003Y (N4200/4GB/500GB/W10) 3.523e-16
## ProductX541UA-DM1897 (i3-6006U/4GB/256GB/FHD/Linux) 2.858e-16
## ProductX541UV-DM1439T (i3-7100U/6GB/256GB/GeForce 3.493e-16
## ProductX542UQ-DM117 (i3-7100U/8GB/1TB/GeForce 2.762e-16
## ProductX542UQ-GO005 (i5-7200U/8GB/1TB/GeForce 2.767e-16
## ProductX550VX-XX015D (i5-6300HQ/4GB/1TB/GeForce 5.380e-16
## ProductX553SA-XX021T (N3050/4GB/500GB/W10) 3.935e-16
## ProductX553SA-XX031T (N3050/4GB/500GB/W10) 3.643e-16
## ProductX555BP-XX180T (A9-9420/4GB/1TB/Radeon 3.715e-16
## ProductX555QG-DM242T (A10-9620P/4GB/1TB 6.422e-16
## ProductX556UJ-XO044T (i7-6500U/4GB/500GB/GeForce 3.300e-16
## ProductX705UV-BX074T (i3-6006U/4GB/1TB/GeForce 2.952e-16
## ProductX751NV-TY001 (N4200/4GB/1TB/GeForce 4.010e-16
## ProductX751NV-TY001T (N4200/4GB/1TB/GeForce 4.005e-16
## ProductX751SV-TY001T (N3710/4GB/1TB/GeForce 4.730e-16
## ProductXPS 13 8.638e-16
## ProductXPS 15 6.214e-16
## ProductYoga 11e 3.511e-16
## ProductYoga 500-14IBD 6.296e-16
## ProductYoga 500-14ISK 6.089e-16
## ProductYoga 500-15ISK 6.155e-16
## ProductYoga 510-15IKB 6.351e-16
## ProductYoga 520-14IKB 6.119e-16
## ProductYoga 700-11ISK 3.859e-16
## ProductYoga 720-13IKB 6.317e-16
## ProductYoga 720-15IKB 9.645e-16
## ProductYoga 730 6.371e-16
## ProductYoga 900-13ISK 6.727e-16
## ProductYoga 900S-12ISK 3.925e-16
## ProductYoga 910-13IKB 6.131e-16
## ProductYoga 920-13IKB 6.178e-16
## ProductYoga Book 5.040e-16
## ProductZbook 15 4.412e-16
## ProductZBook 15 2.291e-16
## ProductZBook 15u 5.940e-16
## ProductZbook 17 8.555e-16
## ProductZBook 17 3.544e-16
## ProductZBook Studio NA
## ProductZenbook 3 2.430e-16
## ProductZenBook 3 2.751e-16
## ProductZenbook Flip 2.886e-16
## ProductZenBook Flip 2.652e-16
## ProductZenBook Pro 5.611e-16
## ProductZenBook UX305CA-UBM1 6.192e-16
## ProductZenBook UX310UA-FB485T 3.492e-16
## ProductZenBook UX310UA-WB71 2.893e-16
## ProductZenBook UX310UQ-GL026T 3.287e-16
## ProductZenbook UX330UA-AH5Q 2.825e-16
## ProductZenbook UX390UA 2.897e-16
## ProductZenbook UX410UA-GV027T 2.843e-16
## ProductZenBook UX410UA-GV183T 2.859e-16
## ProductZenbook UX430UA 2.757e-16
## ProductZenBook UX430UA 2.817e-16
## ProductZenBook UX430UN 2.933e-16
## ProductZenbook UX510UW-FI095T 3.228e-16
## ProductZenBook UX510UX-CN211T 2.860e-16
## ProductZenBook UX530UQ-PRO NA
## TypeNameGaming 1.699e-16
## TypeNameNetbook 1.332e-16
## TypeNameNotebook 1.050e-16
## TypeNameUltrabook 1.016e-16
## TypeNameWorkstation 5.023e-16
## Inches 3.848e-17
## ScreenResolution1440x900 2.489e-16
## ScreenResolution1600x900 1.640e-16
## ScreenResolution1920x1080 NA
## ScreenResolution2560x1440 1.515e-16
## ScreenResolution4K Ultra HD / Touchscreen 3840x2160 1.260e-16
## ScreenResolution4K Ultra HD 3840x2160 1.472e-16
## ScreenResolutionFull HD / Touchscreen 1920x1080 8.545e-17
## ScreenResolutionFull HD 1920x1080 3.102e-17
## ScreenResolutionIPS Panel 1366x768 1.632e-16
## ScreenResolutionIPS Panel 2560x1440 1.488e-16
## ScreenResolutionIPS Panel 4K Ultra HD / Touchscreen 3840x2160 9.865e-17
## ScreenResolutionIPS Panel 4K Ultra HD 3840x2160 1.169e-16
## ScreenResolutionIPS Panel Full HD / Touchscreen 1920x1080 8.707e-17
## ScreenResolutionIPS Panel Full HD 1366x768 1.987e-16
## ScreenResolutionIPS Panel Full HD 1920x1080 4.736e-17
## ScreenResolutionIPS Panel Full HD 1920x1200 NA
## ScreenResolutionIPS Panel Full HD 2160x1440 NA
## ScreenResolutionIPS Panel Full HD 2560x1440 5.482e-16
## ScreenResolutionIPS Panel Quad HD+ / Touchscreen 3200x1800 2.803e-16
## ScreenResolutionIPS Panel Quad HD+ 2560x1440 1.527e-16
## ScreenResolutionIPS Panel Quad HD+ 3200x1800 NA
## ScreenResolutionIPS Panel Retina Display 2304x1440 NA
## ScreenResolutionIPS Panel Retina Display 2560x1600 2.371e-16
## ScreenResolutionIPS Panel Retina Display 2736x1824 NA
## ScreenResolutionIPS Panel Retina Display 2880x1800 NA
## ScreenResolutionIPS Panel Touchscreen / 4K Ultra HD 3840x2160 3.535e-16
## ScreenResolutionIPS Panel Touchscreen 1366x768 2.891e-16
## ScreenResolutionIPS Panel Touchscreen 1920x1200 NA
## ScreenResolutionIPS Panel Touchscreen 2400x1600 NA
## ScreenResolutionIPS Panel Touchscreen 2560x1440 1.706e-16
## ScreenResolutionQuad HD+ / Touchscreen 3200x1800 8.644e-17
## ScreenResolutionQuad HD+ 3200x1800 2.067e-16
## ScreenResolutionTouchscreen / 4K Ultra HD 3840x2160 6.172e-16
## ScreenResolutionTouchscreen / Full HD 1920x1080 2.343e-16
## ScreenResolutionTouchscreen / Quad HD+ 3200x1800 1.981e-16
## ScreenResolutionTouchscreen 1366x768 1.255e-16
## ScreenResolutionTouchscreen 2256x1504 NA
## ScreenResolutionTouchscreen 2400x1600 NA
## ScreenResolutionTouchscreen 2560x1440 1.371e-16
## CpuAMD A10-Series 9620P 2.5GHz 5.895e-16
## CpuAMD A10-Series A10-9620P 2.5GHz NA
## CpuAMD A12-Series 9700P 2.5GHz NA
## CpuAMD A12-Series 9720P 2.7GHz 5.892e-16
## CpuAMD A12-Series 9720P 3.6GHz NA
## CpuAMD A4-Series 7210 2.2GHz 2.634e-16
## CpuAMD A6-Series 7310 2GHz NA
## CpuAMD A6-Series 9220 2.5GHz 2.170e-16
## CpuAMD A6-Series 9220 2.9GHz 3.764e-16
## CpuAMD A6-Series A6-9220 2.5GHz NA
## CpuAMD A8-Series 7410 2.2GHz NA
## CpuAMD A9-Series 9410 2.9GHz NA
## CpuAMD A9-Series 9420 2.9GHz 4.464e-16
## CpuAMD A9-Series 9420 3GHz 5.565e-16
## CpuAMD A9-Series A9-9420 3GHz NA
## CpuAMD E-Series 6110 1.5GHz NA
## CpuAMD E-Series 7110 1.8GHz NA
## CpuAMD E-Series 9000 2.2GHz 3.820e-16
## CpuAMD E-Series 9000e 1.5GHz NA
## CpuAMD E-Series E2-6110 1.5GHz NA
## CpuAMD E-Series E2-9000 2.2GHz 3.823e-16
## CpuAMD E-Series E2-9000e 1.5GHz NA
## CpuAMD FX 8800P 2.1GHz NA
## CpuAMD FX 9830P 3GHz NA
## CpuAMD Ryzen 1600 3.2GHz 8.974e-16
## CpuAMD Ryzen 1700 3GHz 8.836e-16
## CpuIntel Atom x5-Z8300 1.44GHz NA
## CpuIntel Atom x5-Z8350 1.44GHz NA
## CpuIntel Atom X5-Z8350 1.44GHz NA
## CpuIntel Atom x5-Z8550 1.44GHz NA
## CpuIntel Atom Z8350 1.92GHz NA
## CpuIntel Celeron Dual Core 3205U 1.5GHz NA
## CpuIntel Celeron Dual Core 3855U 1.6GHz 5.975e-16
## CpuIntel Celeron Dual Core N3050 1.6GHz 6.368e-16
## CpuIntel Celeron Dual Core N3060 1.60GHz 7.690e-16
## CpuIntel Celeron Dual Core N3060 1.6GHz 6.322e-16
## CpuIntel Celeron Dual Core N3350 1.1GHz 5.971e-16
## CpuIntel Celeron Dual Core N3350 2.0GHz NA
## CpuIntel Celeron Dual Core N3350 2GHz 5.674e-16
## CpuIntel Celeron Quad Core N3160 1.6GHz NA
## CpuIntel Celeron Quad Core N3450 1.1GHz NA
## CpuIntel Celeron Quad Core N3710 1.6GHz NA
## CpuIntel Core i3 6006U 2.0GHz 5.660e-16
## CpuIntel Core i3 6006U 2.2GHz 5.989e-16
## CpuIntel Core i3 6006U 2GHz 5.617e-16
## CpuIntel Core i3 6100U 2.1GHz 5.993e-16
## CpuIntel Core i3 6100U 2.3GHz 5.665e-16
## CpuIntel Core i3 7100U 2.4GHz 5.576e-16
## CpuIntel Core i3 7130U 2.7GHz 5.760e-16
## CpuIntel Core i5 1.3GHz 2.603e-16
## CpuIntel Core i5 1.6GHz NA
## CpuIntel Core i5 1.8GHz NA
## CpuIntel Core i5 2.0GHz 2.247e-16
## CpuIntel Core i5 2.3GHz 3.319e-16
## CpuIntel Core i5 2.9GHz 2.239e-16
## CpuIntel Core i5 3.1GHz NA
## CpuIntel Core i5 6200U 2.3GHz 5.657e-16
## CpuIntel Core i5 6260U 1.8GHz 5.876e-16
## CpuIntel Core i5 6300HQ 2.3GHz 7.629e-16
## CpuIntel Core i5 6300U 2.4GHz 5.703e-16
## CpuIntel Core i5 6440HQ 2.6GHz NA
## CpuIntel Core i5 7200U 2.50GHz 5.898e-16
## CpuIntel Core i5 7200U 2.5GHz 5.559e-16
## CpuIntel Core i5 7200U 2.70GHz 5.948e-16
## CpuIntel Core i5 7200U 2.7GHz 6.091e-16
## CpuIntel Core i5 7300HQ 2.5GHz 6.400e-16
## CpuIntel Core i5 7300U 2.6GHz 5.570e-16
## CpuIntel Core i5 7440HQ 2.8GHz 5.657e-16
## CpuIntel Core i5 7500U 2.7GHz 5.911e-16
## CpuIntel Core i5 7Y54 1.2GHz 5.647e-16
## CpuIntel Core i5 7Y57 1.2GHz 6.028e-16
## CpuIntel Core i5 8250U 1.6GHz 5.530e-16
## CpuIntel Core i7 2.2GHz 3.024e-16
## CpuIntel Core i7 2.7GHz 2.577e-16
## CpuIntel Core i7 2.8GHz 2.603e-16
## CpuIntel Core i7 2.9GHz NA
## CpuIntel Core i7 6500U 2.50GHz 5.856e-16
## CpuIntel Core i7 6500U 2.5GHz 5.673e-16
## CpuIntel Core i7 6560U 2.2GHz 5.824e-16
## CpuIntel Core i7 6600U 2.6GHz 5.723e-16
## CpuIntel Core i7 6700HQ 2.6GHz 7.338e-16
## CpuIntel Core i7 6820HK 2.7GHz 8.203e-16
## CpuIntel Core i7 6820HQ 2.7GHz 8.138e-16
## CpuIntel Core i7 6920HQ 2.9GHz NA
## CpuIntel Core i7 7500U 2.5GHz NA
## CpuIntel Core i7 7500U 2.7GHz 5.569e-16
## CpuIntel Core i7 7560U 2.4GHz 6.123e-16
## CpuIntel Core i7 7600U 2.8GHz 5.560e-16
## CpuIntel Core i7 7660U 2.5GHz 5.957e-16
## CpuIntel Core i7 7700HQ 2.7GHz 6.880e-16
## CpuIntel Core i7 7700HQ 2.8GHz 6.396e-16
## CpuIntel Core i7 7820HK 2.9GHz 6.606e-16
## CpuIntel Core i7 7820HQ 2.9GHz 2.691e-16
## CpuIntel Core i7 7Y75 1.3GHz 5.584e-16
## CpuIntel Core i7 8550U 1.8GHz 5.517e-16
## CpuIntel Core i7 8650U 1.9GHz 6.586e-16
## CpuIntel Core M 1.1GHz 2.885e-16
## CpuIntel Core M 1.2GHz 3.378e-16
## CpuIntel Core M 6Y30 0.9GHz NA
## CpuIntel Core M 6Y54 1.1GHz NA
## CpuIntel Core M 6Y75 1.2GHz NA
## CpuIntel Core M 7Y30 1.0GHz NA
## CpuIntel Core M m3 1.2GHz NA
## CpuIntel Core M M3-6Y30 0.9GHz 2.731e-16
## CpuIntel Core M m3-7Y30 2.2GHz 5.835e-16
## CpuIntel Core M m7-6Y75 1.2GHz NA
## CpuIntel Core M M7-6Y75 1.2GHz NA
## CpuIntel Pentium Dual Core 4405U 2.1GHz 5.840e-16
## CpuIntel Pentium Dual Core 4405Y 1.5GHz NA
## CpuIntel Pentium Dual Core N4200 1.1GHz NA
## CpuIntel Pentium Quad Core N3700 1.6GHz 6.505e-16
## CpuIntel Pentium Quad Core N3710 1.6GHz 6.505e-16
## CpuIntel Pentium Quad Core N4200 1.1GHz 5.804e-16
## CpuIntel Xeon E3-1505M V6 3GHz 7.225e-16
## CpuIntel Xeon E3-1535M v5 2.9GHz NA
## CpuIntel Xeon E3-1535M v6 3.1GHz NA
## CpuSamsung Cortex A72&A53 2.0GHz NA
## Ram 3.787e-18
## Memory1.0TB Hybrid 2.878e-16
## Memory128GB Flash Storage 3.084e-16
## Memory128GB HDD NA
## Memory128GB SSD 2.410e-16
## Memory128GB SSD + 1TB HDD 2.392e-16
## Memory128GB SSD + 2TB HDD 2.707e-16
## Memory16GB Flash Storage 4.413e-16
## Memory16GB SSD NA
## Memory180GB SSD 2.698e-16
## Memory1TB HDD 2.375e-16
## Memory1TB HDD + 1TB HDD NA
## Memory1TB SSD 2.462e-16
## Memory1TB SSD + 1TB HDD 3.457e-16
## Memory240GB SSD NA
## Memory256GB Flash Storage 2.815e-16
## Memory256GB SSD 2.346e-16
## Memory256GB SSD + 1.0TB Hybrid 2.643e-16
## Memory256GB SSD + 1TB HDD 2.426e-16
## Memory256GB SSD + 256GB SSD 2.596e-16
## Memory256GB SSD + 2TB HDD 2.468e-16
## Memory256GB SSD + 500GB HDD 3.149e-16
## Memory2TB HDD 2.477e-16
## Memory32GB Flash Storage 1.570e-16
## Memory32GB HDD NA
## Memory32GB SSD NA
## Memory500GB HDD 2.394e-16
## Memory508GB Hybrid 3.388e-16
## Memory512GB Flash Storage NA
## Memory512GB SSD 2.356e-16
## Memory512GB SSD + 1.0TB Hybrid NA
## Memory512GB SSD + 1TB HDD 2.596e-16
## Memory512GB SSD + 256GB SSD NA
## Memory512GB SSD + 2TB HDD 2.811e-16
## Memory512GB SSD + 512GB SSD NA
## Memory64GB Flash Storage NA
## Memory64GB Flash Storage + 1TB HDD NA
## Memory64GB SSD NA
## Memory8GB SSD NA
## GpuAMD FirePro W4190M 5.542e-16
## GpuAMD FirePro W5130M NA
## GpuAMD FirePro W6150M 2.597e-16
## GpuAMD R17M-M1-70 NA
## GpuAMD R4 Graphics 3.140e-16
## GpuAMD Radeon 520 2.144e-16
## GpuAMD Radeon 530 2.474e-16
## GpuAMD Radeon 540 2.712e-16
## GpuAMD Radeon Pro 455 NA
## GpuAMD Radeon Pro 555 NA
## GpuAMD Radeon Pro 560 NA
## GpuAMD Radeon R2 NA
## GpuAMD Radeon R2 Graphics NA
## GpuAMD Radeon R3 NA
## GpuAMD Radeon R4 NA
## GpuAMD Radeon R4 Graphics NA
## GpuAMD Radeon R5 NA
## GpuAMD Radeon R5 430 NA
## GpuAMD Radeon R5 520 NA
## GpuAMD Radeon R5 M315 3.123e-16
## GpuAMD Radeon R5 M330 NA
## GpuAMD Radeon R5 M420 1.840e-16
## GpuAMD Radeon R5 M420X 2.089e-16
## GpuAMD Radeon R5 M430 1.780e-16
## GpuAMD Radeon R7 3.241e-16
## GpuAMD Radeon R7 Graphics NA
## GpuAMD Radeon R7 M360 NA
## GpuAMD Radeon R7 M365X 2.668e-16
## GpuAMD Radeon R7 M440 3.248e-16
## GpuAMD Radeon R7 M445 2.447e-16
## GpuAMD Radeon R7 M460 NA
## GpuAMD Radeon R7 M465 2.577e-16
## GpuAMD Radeon R9 M385 NA
## GpuAMD Radeon RX 540 NA
## GpuAMD Radeon RX 550 2.665e-16
## GpuAMD Radeon RX 560 NA
## GpuAMD Radeon RX 580 NA
## GpuARM Mali T860 MP4 NA
## GpuIntel Graphics 620 2.579e-16
## GpuIntel HD Graphics 1.993e-16
## GpuIntel HD Graphics 400 3.123e-16
## GpuIntel HD Graphics 405 3.869e-16
## GpuIntel HD Graphics 500 NA
## GpuIntel HD Graphics 505 NA
## GpuIntel HD Graphics 510 NA
## GpuIntel HD Graphics 515 1.823e-16
## GpuIntel HD Graphics 520 1.771e-16
## GpuIntel HD Graphics 530 4.132e-16
## GpuIntel HD Graphics 5300 NA
## GpuIntel HD Graphics 540 NA
## GpuIntel HD Graphics 6000 NA
## GpuIntel HD Graphics 615 NA
## GpuIntel HD Graphics 620 1.505e-16
## GpuIntel HD Graphics 620 2.563e-16
## GpuIntel HD Graphics 630 4.327e-16
## GpuIntel Iris Graphics 540 NA
## GpuIntel Iris Graphics 550 NA
## GpuIntel Iris Plus Graphics 640 2.741e-16
## GpuIntel Iris Plus Graphics 650 NA
## GpuIntel Iris Pro Graphics NA
## GpuIntel UHD Graphics 620 1.447e-16
## GpuNvidia GeForce 150MX 5.501e-16
## GpuNvidia GeForce 920 2.626e-16
## GpuNvidia GeForce 920M 2.546e-16
## GpuNvidia GeForce 920MX 1.702e-16
## GpuNvidia GeForce 920MX 2.333e-16
## GpuNvidia GeForce 930M 2.357e-16
## GpuNvidia GeForce 930MX 1.614e-16
## GpuNvidia GeForce 930MX 1.827e-16
## GpuNvidia GeForce 940M NA
## GpuNvidia GeForce 940MX 1.378e-16
## GpuNvidia GeForce 960M 5.694e-16
## GpuNvidia GeForce GT 940MX 2.030e-16
## GpuNvidia GeForce GTX 1050 3.682e-16
## GpuNvidia GeForce GTX 1050 Ti 3.586e-16
## GpuNvidia GeForce GTX 1050M 3.766e-16
## GpuNvidia GeForce GTX 1050Ti 4.105e-16
## GpuNvidia GeForce GTX 1060 3.457e-16
## GpuNvidia GeForce GTX 1070 3.332e-16
## GpuNvidia GeForce GTX 1070M 4.874e-16
## GpuNvidia GeForce GTX 1080 4.772e-16
## GpuNvidia GeForce GTX 930MX NA
## GpuNvidia GeForce GTX 940M 2.450e-16
## GpuNvidia GeForce GTX 940MX 1.770e-16
## GpuNvidia GeForce GTX 950M NA
## GpuNvidia GeForce GTX 960 2.011e-16
## GpuNvidia GeForce GTX 960<U+039C> 2.311e-16
## GpuNvidia GeForce GTX 960M NA
## GpuNvidia GeForce GTX 965M NA
## GpuNvidia GeForce GTX 970M NA
## GpuNvidia GeForce GTX 980 NA
## GpuNvidia GeForce GTX 980M NA
## GpuNvidia GeForce GTX1050 Ti NA
## GpuNvidia GeForce GTX1060 NA
## GpuNvidia GeForce GTX1080 NA
## GpuNvidia GeForce MX130 1.715e-16
## GpuNvidia GeForce MX150 NA
## GpuNvidia GTX 980 SLI NA
## GpuNvidia Quadro 3000M NA
## GpuNvidia Quadro M1000M 3.549e-16
## GpuNvidia Quadro M1200 3.464e-16
## GpuNvidia Quadro M2000M NA
## GpuNvidia Quadro M2200 3.515e-16
## GpuNvidia Quadro M2200M NA
## GpuNvidia Quadro M3000M NA
## GpuNvidia Quadro M500M NA
## GpuNvidia Quadro M520M NA
## GpuNvidia Quadro M620 NA
## GpuNvidia Quadro M620M NA
## OpSysChrome OS NA
## OpSysLinux 1.869e-16
## OpSysMac OS X NA
## OpSysmacOS NA
## OpSysNo OS 1.887e-16
## OpSysWindows 10 1.837e-16
## OpSysWindows 10 S NA
## OpSysWindows 7 1.951e-16
## Weight 8.004e-17
## Frequenza NA
## Risoluzione1440x900 NA
## Risoluzione1600x900 NA
## Risoluzione1920x1080 NA
## Risoluzione1920x1200 NA
## Risoluzione2160x1440 NA
## Risoluzione2256x1504 NA
## Risoluzione2304x1440 NA
## Risoluzione2400x1600 NA
## Risoluzione2560x1440 NA
## Risoluzione2560x1600 NA
## Risoluzione2736x1824 NA
## Risoluzione2880x1800 NA
## Risoluzione3200x1800 NA
## Risoluzione3840x2160 NA
## Pixel NA
## SolidStateDiskTrue NA
## LogPrice 7.847e-17
## t value
## (Intercept) -6.388e+00
## X -5.113e+00
## CompanyApple -1.491e+00
## CompanyAsus -1.540e-01
## CompanyChuwi 1.322e+00
## CompanyDell -8.540e-01
## CompanyFujitsu 2.260e-01
## CompanyGoogle -1.357e+00
## CompanyHP -1.616e+00
## CompanyHuawei -6.390e-01
## CompanyLenovo 1.143e+00
## CompanyLG -1.036e+00
## CompanyMediacom 1.150e+00
## CompanyMicrosoft -1.182e+00
## CompanyMSI 1.605e+00
## CompanyRazer -7.080e-01
## CompanySamsung 4.260e-01
## CompanyToshiba -4.580e-01
## CompanyVero 1.744e+00
## CompanyXiaomi -1.170e-01
## Product14-am079na (N3710/8GB/2TB/W10) 2.071e+00
## Product15-AC110nv (i7-6500U/6GB/1TB/Radeon 2.014e+00
## Product15-AY023na (N3710/8GB/2TB/W10) 2.086e+00
## Product15-ay047nv (i3-6006U/6GB/1TB/Radeon 1.719e+00
## Product15-BA015wm (E2-7110/4GB/500GB/W10) 1.973e+00
## Product15-ba043na (A12-9700P/8GB/2TB/W10) 1.245e+00
## Product15-bs002nv (i3-6006U/4GB/128GB/FHD/W10) 1.762e+00
## Product15-bs005nv (i3-6006U/4GB/1TB 2.120e+00
## Product15-bs011nv (i7-7500U/4GB/500GB/Radeon 1.697e+00
## Product15-bs012nv (i7-7500U/8GB/1TB/Radeon 1.671e+00
## Product15-bs015dx (i5-7200U/8GB/1TB/W10) 1.602e+00
## Product15-bs017nv (i7-7500U/8GB/256GB/Radeon 1.785e+00
## Product15-bs018nq (i3-6006U/4GB/500GB/FHD/No 1.847e+00
## Product15-bs023nv (i3-6006U/4GB/1TB/FHD/W10) 1.804e+00
## Product15-bs024nv (i5-7200U/8GB/128GB/W10) 1.716e+00
## Product15-bs025nv (i5-7200U/8GB/256GB/W10) 1.976e+00
## Product15-BS026nv (i5-7200U/8GB/256GB/Radeon 1.923e+00
## Product15-BS028nv (i3-6006U/4GB/1TB/Radeon 1.967e+00
## Product15-bs053od (i7-7500U/6GB/1TB/W10) 1.993e+00
## Product15-bs078cl (i7-7500U/8GB/2TB/W10) 2.084e+00
## Product15-BS078nr (i7-7500U/8GB/1TB/W10) 1.842e+00
## Product15-BS101nv (i7-8550U/8GB/256GB/FHD/W10) 1.781e+00
## Product15-BS103nv (i5-8250U/6GB/256GB/Radeon 1.879e+00
## Product15-bs190od (i5-8250U/4GB/1TB/W10) 1.780e+00
## Product15-bw000nv (E2-9000e/4GB/500GB/Radeon 1.726e+00
## Product15-bw002nv (A6-9220/4GB/256GB/Radeon 1.431e+00
## Product15-bw003nv (A9-Series-9420/4GB/256GB/FHD/W10) 1.695e+00
## Product15-BW004nv (A9-9420/4GB/256GB/Radeon 1.444e+00
## Product15-bw007nv (A10-9620P/6GB/128GB/Radeon 1.039e+00
## Product15-bw009nv (A12-9720P/6GB/1TB/Radeon 1.848e+00
## Product15-bw011nv (A6-9220/4GB/1TB/FHD/W10) 1.896e+00
## Product15-BW037na (A9-9420/4GB/1TB/Radeon 1.427e+00
## Product15-BW091ND (A9-9420/6GB/1TB 1.109e+00
## Product15-BW094nd (A6-9220/8GB/128GB/W10) 1.518e+00
## Product15-cb003na (i5-7300HQ/8GB/1TB 2.801e+00
## Product15-cd005nv (A9-9420/6GB/256GB/Radeon 9.930e-01
## Product15-ra044nv (N3060/4GB/500GB/W10) 1.537e+00
## Product15-rb013nv (E2-9000e/4GB/500GB/W10) 1.847e+00
## Product17-ak001nv (A6-9220/4GB/500GB/Radeon 1.436e+00
## Product17-ak002nv (A10-9620P/6GB/2TB/Radeon 1.583e+00
## Product17-AK091ND (A9-9420/8GB/1TB/W10) 1.518e+00
## Product17-bs000nv I3 1.699e+00
## Product17-bs001nv (i5-7200U/6GB/2TB/Radeon 1.766e+00
## Product17-BS037cl (i3-6006U/8GB/1TB/W10) 1.632e+00
## Product17-BS092ND (i3-6006U/8GB/256GB/W10) 1.279e+00
## Product17-X047na (i3-6006U/8GB/1TB/W10) 1.521e+00
## Product17-Y002nv (A10-9600P/6GB/2TB/Radeon 1.073e+00
## Product250 G4 1.717e+00
## Product250 G5 1.783e+00
## Product250 G6 1.871e+00
## Product255 G6 1.867e+00
## Product320-15ISK (i3-6006U/4GB/1TB/GeForce -1.448e+00
## ProductA541NA-GO342 (N3350/4GB/500GB/Linux) 3.724e+00
## ProductA715-71G-59DH (i5-7300HQ/8GB/1TB/GeForce 1.499e+00
## ProductAlienware 15 1.224e+00
## ProductAlienware 17 1.333e+00
## ProductAspire 1 1.628e+00
## ProductAspire 3 7.500e-01
## ProductAspire 5 6.650e-01
## ProductAspire 7 1.283e+00
## ProductAspire A315-31 8.260e-01
## ProductAspire A315-51 5.730e-01
## ProductAspire A515-51G 6.380e-01
## ProductAspire A515-51G-32MX 7.750e-01
## ProductAspire A515-51G-37JS 8.120e-01
## ProductAspire A515-51G-59QF 8.410e-01
## ProductAspire A517-51G 5.220e-01
## ProductAspire A715-71G 1.034e+00
## ProductAspire E5-475 8.200e-01
## ProductAspire E5-575 6.150e-01
## ProductAspire E5-576G 5.640e-01
## ProductAspire E5-774G 4.040e-01
## ProductAspire ES1-523 8.710e-01
## ProductAspire ES1-531 6.960e-01
## ProductAspire ES1-533 7.110e-01
## ProductAspire ES1-572 7.260e-01
## ProductAspire F5-573G 6.900e-01
## ProductAspire F5-573G-510L 4.530e-01
## ProductAspire R7 1.640e-01
## ProductAspire VX5-591G 1.007e+00
## ProductB51-80 (i5-6200U/8GB/1008GB/Radeon -1.926e+00
## ProductB51-80 (i5-6200U/8GB/1TB/Radeon -1.328e+00
## ProductB51-80 (i7-6500U/4GB/1008GB/FHD/W7) -2.027e+00
## ProductB51-80 (i7-6500U/8GB/1008GB/Radeon -1.571e+00
## ProductBlade Pro 9.580e-01
## ProductBlade Stealth NA
## ProductC740-C9QX (3205U/2GB/32GB/Chrome 1.528e+00
## ProductCB5-132T-C9KK (N3160/4GB/32GB/Chrome 6.580e-01
## ProductChromebook 11 8.270e-01
## ProductChromebook 13 1.175e+00
## ProductChromebook 14 1.070e+00
## ProductChromebook 15 1.386e+00
## ProductChromebook 3 4.100e-02
## ProductChromebook C202SA 1.223e+00
## ProductChromebook C731-C78G 1.157e+00
## ProductChromebook C738T-C2EJ 6.020e-01
## ProductChromebook C910-C2ST 1.377e+00
## ProductChromebook CB5-571-C1DZ 4.800e-01
## ProductChromebook Flip -2.510e-01
## ProductChromebook N23 -8.640e-01
## ProductChromebook Plus 4.100e-01
## ProductChromebook X360 1.130e+00
## ProductE402WA-GA007T (E2-6110/4GB/64GB/W10 2.426e+00
## ProductE402WA-GA010T (E2-6110/2GB/32GB/W10) 4.335e+00
## ProductE5 774G 4.680e-01
## ProductEliteBook 1030 8.700e-02
## ProductElitebook 1040 5.900e-02
## ProductEliteBook 1040 2.020e-01
## ProductElitebook 820 2.210e-01
## ProductEliteBook 820 7.800e-02
## ProductElitebook 840 2.890e-01
## ProductEliteBook 840 4.370e-01
## ProductElitebook 850 6.310e-01
## ProductEliteBook 850 4.540e-01
## ProductElitebook Folio -3.450e-01
## ProductEliteBook Folio -2.700e-02
## ProductEliteBook x360 -2.590e-01
## ProductENVY - 6.560e-01
## ProductEnvy 13-AB002nv 7.930e-01
## ProductEnvy 13-AB020nr 7.930e-01
## ProductEnvy 13-AB077cl 9.420e-01
## ProductEnvy 13-AD007nv 1.415e+00
## ProductEnvy 13-ad009n 1.230e+00
## ProductEnvy 17-U275cl 1.484e+00
## ProductEnvy x360 7.660e-01
## ProductES1-523-84K7 (A8-7410/8GB/256GB/FHD/W10) 7.900e-01
## ProductExtensa EX2540 5.330e-01
## ProductExtensa EX2540-58KR 5.560e-01
## ProductF756UX-T4201D (i7-7500U/8GB/128GB 1.877e+00
## ProductFlex 5 -2.626e+00
## ProductFlexBook Edge -5.070e-01
## ProductFX502VM-AS73 (i7-7700HQ/16GB/1TB 1.386e+00
## ProductFX502VM-DM105T (i7-6700HQ/8GB/1TB/GeForce 1.632e+00
## ProductFX502VM-DM560T (i7-7700HQ/8GB/1TB 6.070e-01
## ProductFX503VD-E4022T (i7-7700HQ/8GB/1TB/GeForce 1.947e+00
## ProductFX503VM-E4007T (i7-7700HQ/16GB/1TB 1.940e+00
## ProductFX550IK-DM018T (FX-9830P/8GB/1TB/Radeon 8.430e-01
## ProductFX553VD-DM627T (i5-7300HQ/8GB/1TB 2.248e+00
## ProductFX553VD-FY647T (i7-7700HQ/8GB/256GB/GeForce 2.148e+00
## ProductFX753VD-GC007T (i7-7700HQ/8GB/1TB 2.013e+00
## ProductFX753VD-GC071T (i7-7700HQ/8GB/1TB/GeForce 1.578e+00
## ProductFX753VD-GC086T (i5-7300HQ/8GB/1TB 2.146e+00
## ProductFX753VD-GC461T (i7-7700HQ/16GB/1TB 1.411e+00
## ProductFX753VE-GC093 (i7-7700HQ/12GB/1TB/GeForce 1.872e+00
## ProductFX753VE-GC155T (i7-7700HQ/16GB/1TB 4.240e-01
## ProductG701VO-IH74K (i7-6820HK/32GB/2x 1.319e+00
## ProductG752VY-GC162T (i7-6700HQ/16GB/1TB -7.460e-01
## ProductGE62 Apache -2.444e+00
## ProductGE63VR 7RE -1.975e+00
## ProductGE63VR 7RF -1.925e+00
## ProductGE72 Apache -3.020e+00
## ProductGE72MVR 7RG -2.070e+00
## ProductGE72VR 6RF -1.790e+00
## ProductGE72VR Apache -1.114e+00
## ProductGE73VR 7RE -2.116e+00
## ProductGE73VR 7RF -2.203e+00
## ProductGL553VE-FY082T (i7-7700HQ/8GB/1TB 1.642e+00
## ProductGL62 6QF -2.405e+00
## ProductGL62M (i5-7300HQ/8GB/1TB -1.290e+00
## ProductGL62M 7RD -1.587e+00
## ProductGL62M 7RDX -8.700e-01
## ProductGL62M 7REX -1.136e+00
## ProductGL72M 7RDX -1.243e+00
## ProductGL72M 7REX -1.477e+00
## ProductGP62 7RDX -1.263e+00
## ProductGP62M 7RDX -8.750e-01
## ProductGP62M 7REX -1.474e+00
## ProductGP62M Leopard -1.187e+00
## ProductGP62MVR 6RF -1.422e+00
## ProductGP72M 7REX -1.442e+00
## ProductGP72MVR 7RFX -1.210e+00
## ProductGP72VR Leopard -1.292e+00
## ProductGram 14Z970 4.430e-01
## ProductGram 15Z970 4.230e-01
## ProductGram 15Z975 NA
## ProductGS40 Phantom -3.559e+00
## ProductGS43VR 7RE -2.035e+00
## ProductGS60 Ghost -3.943e+00
## ProductGS63VR 6RF -2.220e+00
## ProductGS63VR 7RF -2.317e+00
## ProductGS63VR 7RG -1.925e+00
## ProductGS70 Stealth -3.348e+00
## ProductGS73VR 7RF -2.043e+00
## ProductGS73VR 7RG -2.122e+00
## ProductGS73VR Stealth -2.480e+00
## ProductGT62VR 6RD -1.875e+00
## ProductGT62VR 7RE -2.123e+00
## ProductGT72VR Dominator -2.118e+00
## ProductGT73EVR 7RE -2.200e+00
## ProductGT73VR Titan -2.169e+00
## ProductGT80S 6QE -3.202e+00
## ProductGT80S 6QF-074US -2.704e+00
## ProductGV62 7RD-1686NL -1.280e+00
## ProductGV62M 7RD -1.159e+00
## ProductIdeaPad 100S-14IBR 4.640e-01
## ProductIdeaPad 110-15IBR -9.860e-01
## ProductIdeaPad 110-15ISK -1.771e+00
## ProductIdeaPad 110-17ACL -2.466e+00
## ProductIdeaPad 120S-14IAP 1.970e-01
## ProductIdeaPad 300-17ISK -6.270e-01
## ProductIdeaPad 310-15ABR -2.850e+00
## ProductIdeaPad 310-15IKB -1.500e+00
## ProductIdeapad 310-15ISK -1.519e+00
## ProductIdeaPad 310-15ISK -1.551e+00
## ProductIdeaPad 320-14IAP -9.350e-01
## ProductIdeaPad 320-15ABR -3.659e+00
## ProductIdeaPad 320-15AST -1.672e+00
## ProductIdeapad 320-15IAP -1.636e+00
## ProductIdeaPad 320-15IAP -1.001e+00
## ProductIdeaPad 320-15IKB -1.935e+00
## ProductIdeapad 320-15IKBN -1.435e+00
## ProductIdeaPad 320-15IKBN -1.564e+00
## ProductIdeapad 320-15IKBR -1.348e+00
## ProductIdeapad 320-15ISK -1.987e+00
## ProductIdeaPad 320-15ISK -1.822e+00
## ProductIdeaPad 320-17IKB -1.730e+00
## ProductIdeaPad 320-17IKBR -1.772e+00
## ProductIdeaPad 320-17ISK -1.739e+00
## ProductIdeaPad 320s-14IKB -1.896e+00
## ProductIdeaPad 500-15ISK -2.107e+00
## ProductIdeaPad 510-15IKB -1.637e+00
## ProductIdeaPad 510-15ISK -1.309e+00
## ProductIdeapad 510S-13IKB -2.032e+00
## ProductIdeaPad 510s-14IKB -1.351e+00
## ProductIdeapad 520-15IKBR -2.026e+00
## ProductIdeaPad 520s-14IKB -1.922e+00
## ProductIdeaPad 520S-14IKB -2.013e+00
## ProductIdeapad 700-15ISK -2.158e+00
## ProductIdeaPad 720S-13IKB -2.808e+00
## ProductIdeaPad 720S-14IKB -2.779e+00
## ProductIdeaPad Y700-15ACZ -3.639e+00
## ProductIdeaPad Y700-15ISK -1.517e+00
## ProductIdeaPad Y900-17ISK -2.586e+00
## ProductIdeaPad Y910-17ISK -9.350e-01
## ProductInspiron 3168 6.670e-01
## ProductInspiron 3179 6.020e-01
## ProductInspiron 3552 1.233e+00
## ProductInspiron 3567 1.287e+00
## ProductInspiron 3576 1.058e+00
## ProductInspiron 5368 9.250e-01
## ProductInspiron 5370 7.890e-01
## ProductInspiron 5378 6.120e-01
## ProductInspiron 5379 7.070e-01
## ProductInspiron 5567 1.047e+00
## ProductInspiron 5568 7.500e-02
## ProductInspiron 5570 9.060e-01
## ProductInspiron 5577 2.468e+00
## ProductInspiron 5578 9.490e-01
## ProductInspiron 5579 6.740e-01
## ProductInspiron 5767 8.080e-01
## ProductInspiron 5770 6.120e-01
## ProductInspiron 7378 4.300e-02
## ProductInspiron 7559 1.628e+00
## ProductInspiron 7560 5.250e-01
## ProductInspiron 7567 2.134e+00
## ProductInspiron 7570 4.800e-01
## ProductInspiron 7577 2.143e+00
## ProductInspiron 7579 3.610e-01
## ProductInspiron 7773 1.564e+00
## ProductInspiron 7779 2.830e-01
## ProductInsprion 5767 7.650e-01
## ProductK146 (N3350/4GB/32GB/W10) -2.800e-02
## ProductK147 (N3350/4GB/32GB/FHD/W10) -6.020e-01
## ProductK556UR-DM621T (i7-7500U/8GB/256GB/GeForce 3.168e+00
## ProductK756UX-T4340T (i5-7200U/8GB/500GB 2.940e+00
## ProductL403NA-GA013TS (N3350/4GB/32GB/W10) 4.292e+00
## ProductL502NA-GO052T (N3350/4GB/128GB/W10) 1.879e+00
## ProductLapBook 12.3 -1.698e+00
## ProductLapbook 15,6 1.920e-01
## ProductLapBook 15.6" NA
## ProductLaptop MSI -3.024e+00
## ProductLatitude 3180 1.200e-02
## ProductLatitude 3380 2.110e-01
## ProductLatitude 3480 5.980e-01
## ProductLatitude 3570 1.034e+00
## ProductLatitude 3580 5.020e-01
## ProductLatitude 5289 -5.700e-01
## ProductLatitude 5480 2.460e-01
## ProductLatitude 5490 1.340e-01
## ProductLatitude 5580 2.400e-01
## ProductLatitude 5590 2.750e-01
## ProductLatitude 7280 -2.800e-01
## ProductLatitude 7390 -7.100e-01
## ProductLatitude 7480 -3.090e-01
## ProductLatitude E5270 -3.130e-01
## ProductLatitude E5470 2.910e-01
## ProductLatitude E5570 6.130e-01
## ProductLatitude E7270 -2.630e-01
## ProductLatitude E7470 -2.100e-01
## ProductLegion Y520-15IKBN -4.160e-01
## ProductLegion Y720-15IKB -6.650e-01
## ProductLenovo IdeaPad 6.000e-02
## ProductLeopard GP72M -1.682e+00
## ProductLifeBook A556 8.220e-01
## ProductLifebook A557 -1.180e-01
## ProductLifeBook A557 NA
## ProductMacBook 12" 3.021e+00
## ProductMacbook Air 3.731e+00
## ProductMacBook Air 4.192e+00
## ProductMacBook Pro NA
## ProductMateBook X NA
## ProductMi Notebook NA
## ProductN23 (N3060/4GB/128GB/W10) -2.678e+00
## ProductN42-20 Chromebook -1.622e+00
## ProductNitro 5 1.262e+00
## ProductNitro AN515-51 1.556e+00
## ProductNoteb Pav 1.321e+00
## ProductNotebook 9 -1.930e+00
## ProductNotebook Odyssey NA
## ProductOmen - 2.964e+00
## ProductOmen 15-AX205na 3.239e+00
## ProductOmen 15-ce006nv 2.193e+00
## ProductOmen 15-ce007nv 2.960e+00
## ProductOmen 17-an006nv 2.465e+00
## ProductOmen 17-AN010nv 2.695e+00
## ProductOmen 17-an012dx 7.370e-01
## ProductOmen 17-W006na 7.740e-01
## ProductOmen 17-w207nv 2.351e+00
## ProductOmen 17-w212nv 3.095e+00
## ProductOmen 17-W295 2.827e+00
## ProductPavilion 14-BK001nv 1.742e+00
## ProductPavilion 15-AW003nv 9.160e-01
## ProductPavilion 15-BC000nv 2.011e+00
## ProductPavilion 15-cb003nv 3.614e+00
## ProductPavilion 15-CK000nv 1.873e+00
## ProductPavilion Power 2.861e+00
## ProductPavilion x360 1.287e+00
## ProductPavilion X360 9.930e-01
## ProductPixelbook (Core NA
## ProductPL60 7RD NA
## ProductPortege A30-C-1CZ -3.420e-01
## ProductPortege X20W-D-10V -9.180e-01
## ProductPortege X30-D-10J -1.890e+00
## ProductPortege X30-D-10K -1.441e+00
## ProductPortege X30-D-10L -2.202e+00
## ProductPortege X30-D-10V -1.174e+00
## ProductPortege X30-D-10X -1.039e+00
## ProductPortege Z30-C-16H -9.170e-01
## ProductPortege Z30-C-16J -5.400e-01
## ProductPortégé Z30-C-16K -1.738e+00
## ProductPortege Z30-C-16L -5.360e-01
## ProductPortege Z30-C-16P -7.260e-01
## ProductPortege Z30-C-16Z -9.660e-01
## ProductPortégé Z30-C-188 4.600e-02
## ProductPortege Z30-C-1CV -3.970e-01
## ProductPortege Z30-C-1CW -8.230e-01
## ProductPortege Z30T-C-133 -7.670e-01
## ProductPrecision 3510 7.300e-01
## ProductPrecision 3520 1.679e+00
## ProductPrecision 5520 -4.050e-01
## ProductPrecision 7520 -1.076e+00
## ProductPrecision 7720 -1.827e+00
## ProductPrecision M5520 -9.930e-01
## ProductPredator 17 8.030e-01
## ProductPredator G9-793 7.040e-01
## ProductPro P2540UA-AB51 1.236e+00
## ProductPro P2540UA-XO0192R 1.578e+00
## ProductPro P2540UA-XO0198T 3.411e+00
## ProductPro P2540UA-XS51 -2.320e-01
## ProductProbook 430 9.320e-01
## ProductProBook 430 1.170e+00
## ProductProbook 440 1.103e+00
## ProductProBook 440 9.780e-01
## ProductProbook 450 1.055e+00
## ProductProBook 450 1.201e+00
## ProductProbook 470 1.024e+00
## ProductProBook 470 1.017e+00
## ProductProbook 640 4.990e-01
## ProductProBook 640 5.570e-01
## ProductProbook 650 7.380e-01
## ProductProBook 650 5.540e-01
## ProductProBook x360 5.810e-01
## ProductQ304UA-BHI5T11 (i5-7200U/6GB/1TB/FHD/W10) 1.647e+00
## ProductQ524UQ-BHI7T15 (i7-7500U/12GB/2TB/GeForce 2.556e+00
## ProductQ534UX-BHI7T19 (i7-7500U/16GB/2TB -2.600e-01
## ProductR417NA-RS01 (N3350/4GB/32GB/W10) 4.129e+00
## ProductR558UA-DM966T (i5-7200U/8GB/128GB/FHD/W10) 3.269e+00
## ProductROG G701VI 1.149e+00
## ProductRog G701VIK-BA060T 1.010e+00
## ProductROG G701VO -2.360e-01
## ProductROG G703VI-E5062T 9.230e-01
## ProductRog G752VL-GC088D 9.500e-01
## ProductRog G752VL-UH71T 5.910e-01
## ProductRog G752VS-BA171T 7.740e-01
## ProductROG G752VSK-GC493T -7.500e-02
## ProductRog G752VT-GC073T -2.110e-01
## ProductRog G752VY-GC229T -5.430e-01
## ProductRog GL502VM-DS74 1.387e+00
## ProductRog GL502VS 8.000e-01
## ProductRog GL552VW-CN470T 6.230e-01
## ProductRog GL552VW-DM201T 1.480e+00
## ProductRog GL553VE-DS74 1.014e+00
## ProductROG GL553VE-FY022 1.422e+00
## ProductRog GL553VE-FY052T 1.543e+00
## ProductRog GL702VM-GC017T 1.072e+00
## ProductRog GL702VM-GC354T 1.619e+00
## ProductRog GL702VS-BA023T 9.130e-01
## ProductRog GL702VS-GC095T 1.145e+00
## ProductROG GL703VD-GC028T 1.497e+00
## ProductRog GL752VW-T4308T 5.550e-01
## ProductRog GL753VD-GC042T 1.869e+00
## ProductRog GL753VD-GC082T 1.377e+00
## ProductRog GL753VE-DS74 1.297e+00
## ProductRog GL753VE-GC070T 1.306e+00
## ProductRog Strix 1.033e+00
## ProductROG Strix 1.282e+00
## ProductROG Zephyrus -1.311e+00
## ProductSatellite Pro 2.447e+00
## ProductSmartBook 130 1.755e+00
## ProductSmartBook 140 1.860e+00
## ProductSmartBook 141 8.060e-01
## ProductSmartbook 142 3.180e-01
## ProductSmartBook Edge NA
## ProductSP315-51 (i7-7500U/12GB/1TB/FHD/W10) 4.760e-01
## ProductSP714-51 (i7-7Y75/8GB/256GB/FHD/W10) -2.740e-01
## ProductSpectre 13-V100nv 6.980e-01
## ProductSpectre 13-V111dx 3.860e-01
## ProductSpectre Pro 1.070e-01
## ProductSpectre x360 2.250e-01
## ProductSpectre X360 4.730e-01
## ProductSpin 3 3.600e-01
## ProductSpin 5 -1.350e-01
## ProductSpin SP111-31 1.412e+00
## ProductStream 11-Y000na 3.260e+00
## ProductStream 14-AX000nv 3.113e+00
## ProductStream 14-AX001nv 2.764e+00
## ProductStream 14-AX040wm 2.430e+00
## ProductSurface Laptop NA
## ProductSwift 3 2.840e-01
## ProductSwift 7 1.250e-01
## ProductSwift SF114-31-P5HY 7.880e-01
## ProductTecra A40-C-1DF -5.000e-02
## ProductTecra A40-C-1E5 -3.220e-01
## ProductTecra A40-C-1KF 3.530e-01
## ProductTecra A50-C-1ZV 2.520e-01
## ProductTecra A50-C-218 6.530e-01
## ProductTecra A50-C-21G 9.180e-01
## ProductTecra A50-D-11D 3.280e-01
## ProductTecra A50-D-11M 1.920e-01
## ProductTecra X40-D-10G -1.993e+00
## ProductTecra X40-D-10H -8.320e-01
## ProductTecra X40-D-10Z -3.010e-01
## ProductTecra Z40-C-12X -4.030e-01
## ProductTecra Z40-C-12Z -1.295e+00
## ProductTecra Z40-C-136 -1.490e+00
## ProductTecra Z40-C-161 -5.610e-01
## ProductTecra Z50-C-140 -1.371e+00
## ProductTecra Z50-C-144 -1.900e-02
## ProductTecra Z50-D-10E NA
## ProductThinkpad 13 -2.535e+00
## ProductThinkPad 13 -2.867e+00
## ProductThinkpad E470 -1.906e+00
## ProductThinkPad E470 -2.585e+00
## ProductThinkPad E480 -2.712e+00
## ProductThinkpad E570 -2.380e+00
## ProductThinkPad E570 -2.308e+00
## ProductThinkPad E580 -2.531e+00
## ProductThinkPad L460 -2.837e+00
## ProductThinkPad L470 -3.167e+00
## ProductThinkpad L560 -2.824e+00
## ProductThinkPad L570 -2.848e+00
## ProductThinkPad P40 -3.380e+00
## ProductThinkpad P50 -2.152e+00
## ProductThinkpad P51 -9.381e+00
## ProductThinkPad P51 -1.521e+00
## ProductThinkpad P51s -1.107e+00
## ProductThinkPad P51s -6.180e-01
## ProductThinkPad P70 -2.419e+00
## ProductThinkpad P71 -3.881e+00
## ProductThinkpad T460 -3.445e+00
## ProductThinkPad T460 -3.238e+00
## ProductThinkpad T460p -2.877e+00
## ProductThinkpad T460s -4.155e+00
## ProductThinkPad T460s -3.916e+00
## ProductThinkpad T470 -3.644e+00
## ProductThinkPad T470 -3.683e+00
## ProductThinkpad T470p -1.428e+00
## ProductThinkPad T470p -3.590e+00
## ProductThinkpad T470s -3.863e+00
## ProductThinkPad T470s -3.979e+00
## ProductThinkpad T560 -3.423e+00
## ProductThinkPad T560 -3.488e+00
## ProductThinkpad T570 -9.370e-01
## ProductThinkPad T570 -3.686e+00
## ProductThinkpad X1 -4.237e+00
## ProductThinkPad X1 -4.113e+00
## ProductThinkpad X260 -3.285e+00
## ProductThinkpad X270 -3.608e+00
## ProductThinkPad X270 -3.814e+00
## ProductThinkpad Yoga -4.123e+00
## ProductThinkPad Yoga -4.051e+00
## ProductTMX349-G2-M-50FS (i5-7200U/8GB/256GB/FHD/W10) 1.360e-01
## ProductTP501UA-CJ131T (i5-7200U/8GB/1TB/W10) 8.210e-01
## ProductTravelMate B 1.200e-01
## ProductTravelMate B117-M 1.694e+00
## ProductTravelMate P238-M 2.120e-01
## ProductTravelMate P259-G2 4.190e-01
## ProductUX410UA-GV097T (i3-7100U/4GB/256GB/FHD/W10) 6.820e-01
## ProductUX410UA-GV350T (i5-8250U/8GB/256GB/FHD/W10) 3.130e-01
## ProductUX430UQ-GV209R (i7-7500U/8GB/256GB/GeForce -2.260e-01
## ProductUX510UX-CN269T (i7-7500U/8GB/256GB -7.130e-01
## ProductV110-15IAP (N3350/4GB/128GB/No -6.780e-01
## ProductV110-15IAP (N3350/4GB/1TB/No -6.940e-01
## ProductV110-15IKB (i5-7200U/4GB/128GB/W10) -1.430e+00
## ProductV110-15ISK (3855U/4GB/500GB/W10) -1.078e+00
## ProductV110-15ISK (i3-6006U/4GB/128GB/W10) -1.387e+00
## ProductV110-15ISK (i3-6006U/4GB/1TB/No -9.980e-01
## ProductV110-15ISK (i3-6006U/4GB/1TB/Radeon -7.340e-01
## ProductV110-15ISK (i3-6006U/4GB/500GB/W10) -1.882e+00
## ProductV110-15ISK (i5-6200U/4GB/128GB/W10) -1.473e+00
## ProductV110-15ISK (i5-6200U/4GB/500GB/No -1.207e+00
## ProductV110-15ISK (i5-6200U/4GB/500GB/W10) -1.633e+00
## ProductV131 (X5-Z8350/4GB/32GB/FHD/W10) 6.440e-01
## ProductV142 (X5-Z8350/2GB/32GB/W10) NA
## ProductV310-15IKB (i5-7200U/4GB/1TB/FHD/W10) -1.036e+00
## ProductV310-15IKB (i5-7200U/4GB/1TB/No -1.530e+00
## ProductV310-15IKB (i5-7200U/8GB/1TB -1.704e+00
## ProductV310-15IKB (i7-7500U/4GB/1TB/FHD/W10) -2.061e+00
## ProductV310-15ISK (i3-6006U/4GB/128GB/FHD/No -1.602e+00
## ProductV310-15ISK (i3-6006U/4GB/1TB/FHD/W10) -1.584e+00
## ProductV310-15ISK (i3-6006U/4GB/500GB/No -1.929e+00
## ProductV310-15ISK (i5-6200U/4GB/1TB/FHD/No -1.511e+00
## ProductV310-15ISK (i5-7200U/4GB/1TB/FHD/W10) -1.659e+00
## ProductV310-15ISK (i5-7200U/8GB/1TB -1.678e+00
## ProductV320-17ISK (i3-6006U/4GB/500GB/FHD/No -2.278e+00
## ProductV330-15IKB (i3-7130U/4GB/128GB/FHD/W10) -2.056e+00
## ProductV330-15IKB (i5-8250U/4GB/256GB/FHD/W10) -2.191e+00
## ProductV330-15IKB (i5-8250U/4GB/500GB/FHD/W10) -2.192e+00
## ProductV330-15IKB (i5-8250U/8GB/256GB/FHD/W10) -1.878e+00
## ProductV330-15IKB (i7-8550U/8GB/256GB/FHD/W10) -2.045e+00
## ProductV510-15IKB (i5-7200U/8GB/256GB/FHD/No -1.229e+00
## ProductVivoBook E12 4.032e+00
## ProductVivobook E200HA 3.135e+00
## ProductVivoBook E201NA 1.696e+00
## ProductVivoBook E403NA 4.344e+00
## ProductVivoBook Flip 3.247e+00
## ProductVivoBook L402NA 3.609e+00
## ProductVivobook Max 1.220e+00
## ProductVivoBook Max 3.182e+00
## ProductVivoBook Pro 1.565e+00
## ProductVivoBook S14 1.709e+00
## ProductVivoBook S15 6.260e-01
## ProductVivoBook X540YA-XX519T 2.128e+00
## ProductVivobook X541UV-DM1217T 1.128e+00
## ProductVostro 3559 8.050e-01
## ProductVostro 3568 9.000e-01
## ProductVostro 5370 4.440e-01
## ProductVostro 5468 4.950e-01
## ProductVostro 5471 6.090e-01
## ProductVostro 5568 6.740e-01
## ProductX505BP-BR019T (A9-9420/4GB/1TB/Radeon 8.550e-01
## ProductX540SA-RBPDN09 (N3710/4GB/1TB/W10) 4.012e+00
## ProductX540UA-DM186 (i3-6006U/4GB/1TB/FHD/Linux) 2.679e+00
## ProductX541NA (N3350/4GB/1TB/FHD/W10) 2.382e+00
## ProductX541NA (N3350/4GB/1TB/Linux) 2.660e+00
## ProductX541NA (N4200/4GB/1TB/W10) 1.797e+00
## ProductX541NA-GO020T (N3350/4GB/1TB/W10) 2.982e+00
## ProductX541NA-GO121 (N4200/4GB/1TB/Linux) 1.711e+00
## ProductX541NA-GO414T (N3350/8GB/1TB/W10) 2.125e+00
## ProductX541NA-PD1003Y (N4200/4GB/500GB/W10) 2.966e+00
## ProductX541UA-DM1897 (i3-6006U/4GB/256GB/FHD/Linux) 2.802e+00
## ProductX541UV-DM1439T (i3-7100U/6GB/256GB/GeForce 1.937e+00
## ProductX542UQ-DM117 (i3-7100U/8GB/1TB/GeForce 1.224e+00
## ProductX542UQ-GO005 (i5-7200U/8GB/1TB/GeForce 2.728e+00
## ProductX550VX-XX015D (i5-6300HQ/4GB/1TB/GeForce 8.980e-01
## ProductX553SA-XX021T (N3050/4GB/500GB/W10) 2.066e+00
## ProductX553SA-XX031T (N3050/4GB/500GB/W10) 2.299e+00
## ProductX555BP-XX180T (A9-9420/4GB/1TB/Radeon 1.460e+00
## ProductX555QG-DM242T (A10-9620P/4GB/1TB 1.115e+00
## ProductX556UJ-XO044T (i7-6500U/4GB/500GB/GeForce 2.259e+00
## ProductX705UV-BX074T (i3-6006U/4GB/1TB/GeForce 1.689e+00
## ProductX751NV-TY001 (N4200/4GB/1TB/GeForce 1.093e+00
## ProductX751NV-TY001T (N4200/4GB/1TB/GeForce 9.530e-01
## ProductX751SV-TY001T (N3710/4GB/1TB/GeForce 1.047e+00
## ProductXPS 13 -2.320e-01
## ProductXPS 15 9.620e-01
## ProductYoga 11e -3.314e+00
## ProductYoga 500-14IBD -2.528e+00
## ProductYoga 500-14ISK -1.689e+00
## ProductYoga 500-15ISK -2.498e+00
## ProductYoga 510-15IKB -1.955e+00
## ProductYoga 520-14IKB -2.436e+00
## ProductYoga 700-11ISK -5.489e+00
## ProductYoga 720-13IKB -3.011e+00
## ProductYoga 720-15IKB -1.259e+00
## ProductYoga 730 -3.285e+00
## ProductYoga 900-13ISK -2.547e+00
## ProductYoga 900S-12ISK -4.607e+00
## ProductYoga 910-13IKB -3.206e+00
## ProductYoga 920-13IKB -3.861e+00
## ProductYoga Book -1.906e+00
## ProductZbook 15 1.123e+00
## ProductZBook 15 3.470e-01
## ProductZBook 15u 3.181e+00
## ProductZbook 17 -8.500e-02
## ProductZBook 17 6.780e-01
## ProductZBook Studio NA
## ProductZenbook 3 -1.824e+00
## ProductZenBook 3 -1.971e+00
## ProductZenbook Flip -1.589e+00
## ProductZenBook Flip -7.130e-01
## ProductZenBook Pro 4.990e-01
## ProductZenBook UX305CA-UBM1 1.459e+00
## ProductZenBook UX310UA-FB485T -1.496e+00
## ProductZenBook UX310UA-WB71 -5.230e-01
## ProductZenBook UX310UQ-GL026T 1.143e+00
## ProductZenbook UX330UA-AH5Q -7.680e-01
## ProductZenbook UX390UA -2.203e+00
## ProductZenbook UX410UA-GV027T 2.350e-01
## ProductZenBook UX410UA-GV183T 9.200e-02
## ProductZenbook UX430UA 1.020e-01
## ProductZenBook UX430UA 5.600e-02
## ProductZenBook UX430UN 1.290e-01
## ProductZenbook UX510UW-FI095T 1.052e+00
## ProductZenBook UX510UX-CN211T -3.020e-01
## ProductZenBook UX530UQ-PRO NA
## TypeNameGaming -8.480e-01
## TypeNameNetbook 8.110e-01
## TypeNameNotebook 2.350e-01
## TypeNameUltrabook 2.240e-01
## TypeNameWorkstation -1.993e+00
## Inches -3.030e-01
## ScreenResolution1440x900 -1.230e+00
## ScreenResolution1600x900 4.610e-01
## ScreenResolution1920x1080 NA
## ScreenResolution2560x1440 -1.842e+00
## ScreenResolution4K Ultra HD / Touchscreen 3840x2160 -8.830e-01
## ScreenResolution4K Ultra HD 3840x2160 -1.116e+00
## ScreenResolutionFull HD / Touchscreen 1920x1080 -1.330e-01
## ScreenResolutionFull HD 1920x1080 -8.120e-01
## ScreenResolutionIPS Panel 1366x768 2.810e-01
## ScreenResolutionIPS Panel 2560x1440 -8.630e-01
## ScreenResolutionIPS Panel 4K Ultra HD / Touchscreen 3840x2160 -1.777e+00
## ScreenResolutionIPS Panel 4K Ultra HD 3840x2160 -2.034e+00
## ScreenResolutionIPS Panel Full HD / Touchscreen 1920x1080 1.649e+00
## ScreenResolutionIPS Panel Full HD 1366x768 7.100e-02
## ScreenResolutionIPS Panel Full HD 1920x1080 -1.273e+00
## ScreenResolutionIPS Panel Full HD 1920x1200 NA
## ScreenResolutionIPS Panel Full HD 2160x1440 NA
## ScreenResolutionIPS Panel Full HD 2560x1440 -1.967e+00
## ScreenResolutionIPS Panel Quad HD+ / Touchscreen 3200x1800 -2.420e-01
## ScreenResolutionIPS Panel Quad HD+ 2560x1440 8.030e-01
## ScreenResolutionIPS Panel Quad HD+ 3200x1800 NA
## ScreenResolutionIPS Panel Retina Display 2304x1440 NA
## ScreenResolutionIPS Panel Retina Display 2560x1600 1.580e+00
## ScreenResolutionIPS Panel Retina Display 2736x1824 NA
## ScreenResolutionIPS Panel Retina Display 2880x1800 NA
## ScreenResolutionIPS Panel Touchscreen / 4K Ultra HD 3840x2160 -1.030e+00
## ScreenResolutionIPS Panel Touchscreen 1366x768 5.950e-01
## ScreenResolutionIPS Panel Touchscreen 1920x1200 NA
## ScreenResolutionIPS Panel Touchscreen 2400x1600 NA
## ScreenResolutionIPS Panel Touchscreen 2560x1440 -7.920e-01
## ScreenResolutionQuad HD+ / Touchscreen 3200x1800 -7.440e-01
## ScreenResolutionQuad HD+ 3200x1800 1.520e+00
## ScreenResolutionTouchscreen / 4K Ultra HD 3840x2160 1.442e+00
## ScreenResolutionTouchscreen / Full HD 1920x1080 -1.298e+00
## ScreenResolutionTouchscreen / Quad HD+ 3200x1800 -2.670e-01
## ScreenResolutionTouchscreen 1366x768 6.410e-01
## ScreenResolutionTouchscreen 2256x1504 NA
## ScreenResolutionTouchscreen 2400x1600 NA
## ScreenResolutionTouchscreen 2560x1440 -1.832e+00
## CpuAMD A10-Series 9620P 2.5GHz -1.270e-01
## CpuAMD A10-Series A10-9620P 2.5GHz NA
## CpuAMD A12-Series 9700P 2.5GHz NA
## CpuAMD A12-Series 9720P 2.7GHz -2.630e-01
## CpuAMD A12-Series 9720P 3.6GHz NA
## CpuAMD A4-Series 7210 2.2GHz 1.616e+00
## CpuAMD A6-Series 7310 2GHz NA
## CpuAMD A6-Series 9220 2.5GHz -1.183e+00
## CpuAMD A6-Series 9220 2.9GHz 5.830e-01
## CpuAMD A6-Series A6-9220 2.5GHz NA
## CpuAMD A8-Series 7410 2.2GHz NA
## CpuAMD A9-Series 9410 2.9GHz NA
## CpuAMD A9-Series 9420 2.9GHz 3.370e-01
## CpuAMD A9-Series 9420 3GHz 5.460e-01
## CpuAMD A9-Series A9-9420 3GHz NA
## CpuAMD E-Series 6110 1.5GHz NA
## CpuAMD E-Series 7110 1.8GHz NA
## CpuAMD E-Series 9000 2.2GHz 1.600e+00
## CpuAMD E-Series 9000e 1.5GHz NA
## CpuAMD E-Series E2-6110 1.5GHz NA
## CpuAMD E-Series E2-9000 2.2GHz 9.380e-01
## CpuAMD E-Series E2-9000e 1.5GHz NA
## CpuAMD FX 8800P 2.1GHz NA
## CpuAMD FX 9830P 3GHz NA
## CpuAMD Ryzen 1600 3.2GHz -1.329e+00
## CpuAMD Ryzen 1700 3GHz -1.222e+00
## CpuIntel Atom x5-Z8300 1.44GHz NA
## CpuIntel Atom x5-Z8350 1.44GHz NA
## CpuIntel Atom X5-Z8350 1.44GHz NA
## CpuIntel Atom x5-Z8550 1.44GHz NA
## CpuIntel Atom Z8350 1.92GHz NA
## CpuIntel Celeron Dual Core 3205U 1.5GHz NA
## CpuIntel Celeron Dual Core 3855U 1.6GHz 9.690e-01
## CpuIntel Celeron Dual Core N3050 1.6GHz 3.880e-01
## CpuIntel Celeron Dual Core N3060 1.60GHz 4.760e-01
## CpuIntel Celeron Dual Core N3060 1.6GHz 5.300e-01
## CpuIntel Celeron Dual Core N3350 1.1GHz 7.720e-01
## CpuIntel Celeron Dual Core N3350 2.0GHz NA
## CpuIntel Celeron Dual Core N3350 2GHz 1.380e+00
## CpuIntel Celeron Quad Core N3160 1.6GHz NA
## CpuIntel Celeron Quad Core N3450 1.1GHz NA
## CpuIntel Celeron Quad Core N3710 1.6GHz NA
## CpuIntel Core i3 6006U 2.0GHz 1.300e-02
## CpuIntel Core i3 6006U 2.2GHz 6.480e-01
## CpuIntel Core i3 6006U 2GHz -3.800e-02
## CpuIntel Core i3 6100U 2.1GHz 6.280e-01
## CpuIntel Core i3 6100U 2.3GHz 8.200e-02
## CpuIntel Core i3 7100U 2.4GHz -8.100e-02
## CpuIntel Core i3 7130U 2.7GHz -2.860e-01
## CpuIntel Core i5 1.3GHz -3.510e-01
## CpuIntel Core i5 1.6GHz NA
## CpuIntel Core i5 1.8GHz NA
## CpuIntel Core i5 2.0GHz 1.626e+00
## CpuIntel Core i5 2.3GHz 5.550e-01
## CpuIntel Core i5 2.9GHz 3.270e-01
## CpuIntel Core i5 3.1GHz NA
## CpuIntel Core i5 6200U 2.3GHz -3.960e-01
## CpuIntel Core i5 6260U 1.8GHz -3.200e-01
## CpuIntel Core i5 6300HQ 2.3GHz 8.800e-02
## CpuIntel Core i5 6300U 2.4GHz -7.080e-01
## CpuIntel Core i5 6440HQ 2.6GHz NA
## CpuIntel Core i5 7200U 2.50GHz -5.180e-01
## CpuIntel Core i5 7200U 2.5GHz -5.580e-01
## CpuIntel Core i5 7200U 2.70GHz -3.040e-01
## CpuIntel Core i5 7200U 2.7GHz -1.558e+00
## CpuIntel Core i5 7300HQ 2.5GHz -3.980e-01
## CpuIntel Core i5 7300U 2.6GHz -6.800e-01
## CpuIntel Core i5 7440HQ 2.8GHz -9.050e-01
## CpuIntel Core i5 7500U 2.7GHz -3.190e-01
## CpuIntel Core i5 7Y54 1.2GHz -6.370e-01
## CpuIntel Core i5 7Y57 1.2GHz 3.460e-01
## CpuIntel Core i5 8250U 1.6GHz -6.000e-01
## CpuIntel Core i7 2.2GHz 9.480e-01
## CpuIntel Core i7 2.7GHz 6.850e-01
## CpuIntel Core i7 2.8GHz 2.680e-01
## CpuIntel Core i7 2.9GHz NA
## CpuIntel Core i7 6500U 2.50GHz -8.170e-01
## CpuIntel Core i7 6500U 2.5GHz -8.610e-01
## CpuIntel Core i7 6560U 2.2GHz -6.100e-01
## CpuIntel Core i7 6600U 2.6GHz -6.580e-01
## CpuIntel Core i7 6700HQ 2.6GHz -3.480e-01
## CpuIntel Core i7 6820HK 2.7GHz -3.730e-01
## CpuIntel Core i7 6820HQ 2.7GHz -4.630e-01
## CpuIntel Core i7 6920HQ 2.9GHz NA
## CpuIntel Core i7 7500U 2.5GHz NA
## CpuIntel Core i7 7500U 2.7GHz -9.150e-01
## CpuIntel Core i7 7560U 2.4GHz -1.580e-01
## CpuIntel Core i7 7600U 2.8GHz -1.041e+00
## CpuIntel Core i7 7660U 2.5GHz -1.013e+00
## CpuIntel Core i7 7700HQ 2.7GHz -9.530e-01
## CpuIntel Core i7 7700HQ 2.8GHz -6.740e-01
## CpuIntel Core i7 7820HK 2.9GHz -7.470e-01
## CpuIntel Core i7 7820HQ 2.9GHz 1.505e+00
## CpuIntel Core i7 7Y75 1.3GHz -3.320e-01
## CpuIntel Core i7 8550U 1.8GHz -9.020e-01
## CpuIntel Core i7 8650U 1.9GHz -7.900e-01
## CpuIntel Core M 1.1GHz 9.270e-01
## CpuIntel Core M 1.2GHz 1.661e+00
## CpuIntel Core M 6Y30 0.9GHz NA
## CpuIntel Core M 6Y54 1.1GHz NA
## CpuIntel Core M 6Y75 1.2GHz NA
## CpuIntel Core M 7Y30 1.0GHz NA
## CpuIntel Core M m3 1.2GHz NA
## CpuIntel Core M M3-6Y30 0.9GHz 2.788e+00
## CpuIntel Core M m3-7Y30 2.2GHz 5.190e-01
## CpuIntel Core M m7-6Y75 1.2GHz NA
## CpuIntel Core M M7-6Y75 1.2GHz NA
## CpuIntel Pentium Dual Core 4405U 2.1GHz 1.137e+00
## CpuIntel Pentium Dual Core 4405Y 1.5GHz NA
## CpuIntel Pentium Dual Core N4200 1.1GHz NA
## CpuIntel Pentium Quad Core N3700 1.6GHz -1.600e-02
## CpuIntel Pentium Quad Core N3710 1.6GHz 4.060e-01
## CpuIntel Pentium Quad Core N4200 1.1GHz 7.980e-01
## CpuIntel Xeon E3-1505M V6 3GHz -4.460e-01
## CpuIntel Xeon E3-1535M v5 2.9GHz NA
## CpuIntel Xeon E3-1535M v6 3.1GHz NA
## CpuSamsung Cortex A72&A53 2.0GHz NA
## Ram -4.237e+00
## Memory1.0TB Hybrid 2.073e+00
## Memory128GB Flash Storage 1.560e+00
## Memory128GB HDD NA
## Memory128GB SSD 1.721e+00
## Memory128GB SSD + 1TB HDD 9.790e-01
## Memory128GB SSD + 2TB HDD 5.190e-01
## Memory16GB Flash Storage 7.960e-01
## Memory16GB SSD NA
## Memory180GB SSD 1.339e+00
## Memory1TB HDD 1.793e+00
## Memory1TB HDD + 1TB HDD NA
## Memory1TB SSD -9.600e-02
## Memory1TB SSD + 1TB HDD 3.480e-01
## Memory240GB SSD NA
## Memory256GB Flash Storage 1.081e+00
## Memory256GB SSD 1.219e+00
## Memory256GB SSD + 1.0TB Hybrid 1.800e-02
## Memory256GB SSD + 1TB HDD 1.127e+00
## Memory256GB SSD + 256GB SSD 6.160e-01
## Memory256GB SSD + 2TB HDD 2.250e-01
## Memory256GB SSD + 500GB HDD -9.870e-01
## Memory2TB HDD 1.094e+00
## Memory32GB Flash Storage -2.195e+00
## Memory32GB HDD NA
## Memory32GB SSD NA
## Memory500GB HDD 2.066e+00
## Memory508GB Hybrid 1.670e+00
## Memory512GB Flash Storage NA
## Memory512GB SSD 5.110e-01
## Memory512GB SSD + 1.0TB Hybrid NA
## Memory512GB SSD + 1TB HDD 8.800e-01
## Memory512GB SSD + 256GB SSD NA
## Memory512GB SSD + 2TB HDD 1.271e+00
## Memory512GB SSD + 512GB SSD NA
## Memory64GB Flash Storage NA
## Memory64GB Flash Storage + 1TB HDD NA
## Memory64GB SSD NA
## Memory8GB SSD NA
## GpuAMD FirePro W4190M -2.198e+00
## GpuAMD FirePro W5130M NA
## GpuAMD FirePro W6150M 1.280e+00
## GpuAMD R17M-M1-70 NA
## GpuAMD R4 Graphics 1.038e+00
## GpuAMD Radeon 520 4.770e-01
## GpuAMD Radeon 530 6.440e-01
## GpuAMD Radeon 540 1.201e+00
## GpuAMD Radeon Pro 455 NA
## GpuAMD Radeon Pro 555 NA
## GpuAMD Radeon Pro 560 NA
## GpuAMD Radeon R2 NA
## GpuAMD Radeon R2 Graphics NA
## GpuAMD Radeon R3 NA
## GpuAMD Radeon R4 NA
## GpuAMD Radeon R4 Graphics NA
## GpuAMD Radeon R5 NA
## GpuAMD Radeon R5 430 NA
## GpuAMD Radeon R5 520 NA
## GpuAMD Radeon R5 M315 7.420e-01
## GpuAMD Radeon R5 M330 NA
## GpuAMD Radeon R5 M420 1.519e+00
## GpuAMD Radeon R5 M420X 1.100e+00
## GpuAMD Radeon R5 M430 3.330e-01
## GpuAMD Radeon R7 2.296e+00
## GpuAMD Radeon R7 Graphics NA
## GpuAMD Radeon R7 M360 NA
## GpuAMD Radeon R7 M365X 1.952e+00
## GpuAMD Radeon R7 M440 1.051e+00
## GpuAMD Radeon R7 M445 3.760e-01
## GpuAMD Radeon R7 M460 NA
## GpuAMD Radeon R7 M465 1.286e+00
## GpuAMD Radeon R9 M385 NA
## GpuAMD Radeon RX 540 NA
## GpuAMD Radeon RX 550 5.300e-01
## GpuAMD Radeon RX 560 NA
## GpuAMD Radeon RX 580 NA
## GpuARM Mali T860 MP4 NA
## GpuIntel Graphics 620 3.540e-01
## GpuIntel HD Graphics 1.829e+00
## GpuIntel HD Graphics 400 1.303e+00
## GpuIntel HD Graphics 405 4.510e-01
## GpuIntel HD Graphics 500 NA
## GpuIntel HD Graphics 505 NA
## GpuIntel HD Graphics 510 NA
## GpuIntel HD Graphics 515 -7.800e-01
## GpuIntel HD Graphics 520 1.795e+00
## GpuIntel HD Graphics 530 -2.350e-01
## GpuIntel HD Graphics 5300 NA
## GpuIntel HD Graphics 540 NA
## GpuIntel HD Graphics 6000 NA
## GpuIntel HD Graphics 615 NA
## GpuIntel HD Graphics 620 1.944e+00
## GpuIntel HD Graphics 620 6.280e-01
## GpuIntel HD Graphics 630 -1.218e+00
## GpuIntel Iris Graphics 540 NA
## GpuIntel Iris Graphics 550 NA
## GpuIntel Iris Plus Graphics 640 4.210e-01
## GpuIntel Iris Plus Graphics 650 NA
## GpuIntel Iris Pro Graphics NA
## GpuIntel UHD Graphics 620 1.636e+00
## GpuNvidia GeForce 150MX -1.008e+00
## GpuNvidia GeForce 920 8.710e-01
## GpuNvidia GeForce 920M 4.870e-01
## GpuNvidia GeForce 920MX 7.130e-01
## GpuNvidia GeForce 920MX 1.368e+00
## GpuNvidia GeForce 930M 1.288e+00
## GpuNvidia GeForce 930MX 1.575e+00
## GpuNvidia GeForce 930MX 1.423e+00
## GpuNvidia GeForce 940M NA
## GpuNvidia GeForce 940MX 1.242e+00
## GpuNvidia GeForce 960M -1.991e+00
## GpuNvidia GeForce GT 940MX 1.777e+00
## GpuNvidia GeForce GTX 1050 -1.827e+00
## GpuNvidia GeForce GTX 1050 Ti -1.921e+00
## GpuNvidia GeForce GTX 1050M -1.927e+00
## GpuNvidia GeForce GTX 1050Ti -1.576e+00
## GpuNvidia GeForce GTX 1060 -2.703e+00
## GpuNvidia GeForce GTX 1070 -3.295e+00
## GpuNvidia GeForce GTX 1070M -2.365e+00
## GpuNvidia GeForce GTX 1080 -2.921e+00
## GpuNvidia GeForce GTX 930MX NA
## GpuNvidia GeForce GTX 940M 5.310e-01
## GpuNvidia GeForce GTX 940MX 8.150e-01
## GpuNvidia GeForce GTX 950M NA
## GpuNvidia GeForce GTX 960 -4.010e-01
## GpuNvidia GeForce GTX 960<U+039C> -9.580e-01
## GpuNvidia GeForce GTX 960M NA
## GpuNvidia GeForce GTX 965M NA
## GpuNvidia GeForce GTX 970M NA
## GpuNvidia GeForce GTX 980 NA
## GpuNvidia GeForce GTX 980M NA
## GpuNvidia GeForce GTX1050 Ti NA
## GpuNvidia GeForce GTX1060 NA
## GpuNvidia GeForce GTX1080 NA
## GpuNvidia GeForce MX130 -5.500e-02
## GpuNvidia GeForce MX150 NA
## GpuNvidia GTX 980 SLI NA
## GpuNvidia Quadro 3000M NA
## GpuNvidia Quadro M1000M 3.546e+00
## GpuNvidia Quadro M1200 2.437e+00
## GpuNvidia Quadro M2000M NA
## GpuNvidia Quadro M2200 2.600e+00
## GpuNvidia Quadro M2200M NA
## GpuNvidia Quadro M3000M NA
## GpuNvidia Quadro M500M NA
## GpuNvidia Quadro M520M NA
## GpuNvidia Quadro M620 NA
## GpuNvidia Quadro M620M NA
## OpSysChrome OS NA
## OpSysLinux -9.610e-01
## OpSysMac OS X NA
## OpSysmacOS NA
## OpSysNo OS -1.078e+00
## OpSysWindows 10 -2.056e+00
## OpSysWindows 10 S NA
## OpSysWindows 7 -2.699e+00
## Weight -7.610e-01
## Frequenza NA
## Risoluzione1440x900 NA
## Risoluzione1600x900 NA
## Risoluzione1920x1080 NA
## Risoluzione1920x1200 NA
## Risoluzione2160x1440 NA
## Risoluzione2256x1504 NA
## Risoluzione2304x1440 NA
## Risoluzione2400x1600 NA
## Risoluzione2560x1440 NA
## Risoluzione2560x1600 NA
## Risoluzione2736x1824 NA
## Risoluzione2880x1800 NA
## Risoluzione3200x1800 NA
## Risoluzione3840x2160 NA
## Pixel NA
## SolidStateDiskTrue NA
## LogPrice 1.274e+16
## Pr(>|t|)
## (Intercept) 3.96e-10 ***
## X 4.58e-07 ***
## CompanyApple 0.136523
## CompanyAsus 0.877349
## CompanyChuwi 0.186911
## CompanyDell 0.393735
## CompanyFujitsu 0.821045
## CompanyGoogle 0.175455
## CompanyHP 0.106778
## CompanyHuawei 0.523443
## CompanyLenovo 0.253720
## CompanyLG 0.300949
## CompanyMediacom 0.250716
## CompanyMicrosoft 0.237645
## CompanyMSI 0.109249
## CompanyRazer 0.479304
## CompanySamsung 0.670160
## CompanyToshiba 0.646919
## CompanyVero 0.081741 .
## CompanyXiaomi 0.906725
## Product14-am079na (N3710/8GB/2TB/W10) 0.038852 *
## Product15-AC110nv (i7-6500U/6GB/1TB/Radeon 0.044572 *
## Product15-AY023na (N3710/8GB/2TB/W10) 0.037489 *
## Product15-ay047nv (i3-6006U/6GB/1TB/Radeon 0.086298 .
## Product15-BA015wm (E2-7110/4GB/500GB/W10) 0.049029 *
## Product15-ba043na (A12-9700P/8GB/2TB/W10) 0.213673
## Product15-bs002nv (i3-6006U/4GB/128GB/FHD/W10) 0.078718 .
## Product15-bs005nv (i3-6006U/4GB/1TB 0.034480 *
## Product15-bs011nv (i7-7500U/4GB/500GB/Radeon 0.090357 .
## Product15-bs012nv (i7-7500U/8GB/1TB/Radeon 0.095369 .
## Product15-bs015dx (i5-7200U/8GB/1TB/W10) 0.109811
## Product15-bs017nv (i7-7500U/8GB/256GB/Radeon 0.074937 .
## Product15-bs018nq (i3-6006U/4GB/500GB/FHD/No 0.065287 .
## Product15-bs023nv (i3-6006U/4GB/1TB/FHD/W10) 0.071882 .
## Product15-bs024nv (i5-7200U/8GB/128GB/W10) 0.086738 .
## Product15-bs025nv (i5-7200U/8GB/256GB/W10) 0.048712 *
## Product15-BS026nv (i5-7200U/8GB/256GB/Radeon 0.055028 .
## Product15-BS028nv (i3-6006U/4GB/1TB/Radeon 0.049712 *
## Product15-bs053od (i7-7500U/6GB/1TB/W10) 0.046792 *
## Product15-bs078cl (i7-7500U/8GB/2TB/W10) 0.037643 *
## Product15-BS078nr (i7-7500U/8GB/1TB/W10) 0.066045 .
## Product15-BS101nv (i7-8550U/8GB/256GB/FHD/W10) 0.075530 .
## Product15-BS103nv (i5-8250U/6GB/256GB/Radeon 0.060821 .
## Product15-bs190od (i5-8250U/4GB/1TB/W10) 0.075672 .
## Product15-bw000nv (E2-9000e/4GB/500GB/Radeon 0.084995 .
## Product15-bw002nv (A6-9220/4GB/256GB/Radeon 0.153107
## Product15-bw003nv (A9-Series-9420/4GB/256GB/FHD/W10) 0.090658 .
## Product15-BW004nv (A9-9420/4GB/256GB/Radeon 0.149342
## Product15-bw007nv (A10-9620P/6GB/128GB/Radeon 0.299184
## Product15-bw009nv (A12-9720P/6GB/1TB/Radeon 0.065276 .
## Product15-bw011nv (A6-9220/4GB/1TB/FHD/W10) 0.058560 .
## Product15-BW037na (A9-9420/4GB/1TB/Radeon 0.154220
## Product15-BW091ND (A9-9420/6GB/1TB 0.268120
## Product15-BW094nd (A6-9220/8GB/128GB/W10) 0.129594
## Product15-cb003na (i5-7300HQ/8GB/1TB 0.005296 **
## Product15-cd005nv (A9-9420/6GB/256GB/Radeon 0.321132
## Product15-ra044nv (N3060/4GB/500GB/W10) 0.125016
## Product15-rb013nv (E2-9000e/4GB/500GB/W10) 0.065373 .
## Product17-ak001nv (A6-9220/4GB/500GB/Radeon 0.151688
## Product17-ak002nv (A10-9620P/6GB/2TB/Radeon 0.114122
## Product17-AK091ND (A9-9420/8GB/1TB/W10) 0.129780
## Product17-bs000nv I3 0.090016 .
## Product17-bs001nv (i5-7200U/6GB/2TB/Radeon 0.078002 .
## Product17-BS037cl (i3-6006U/8GB/1TB/W10) 0.103333
## Product17-BS092ND (i3-6006U/8GB/256GB/W10) 0.201481
## Product17-X047na (i3-6006U/8GB/1TB/W10) 0.128998
## Product17-Y002nv (A10-9600P/6GB/2TB/Radeon 0.283934
## Product250 G4 0.086551 .
## Product250 G5 0.075226 .
## Product250 G6 0.061920 .
## Product255 G6 0.062574 .
## Product320-15ISK (i3-6006U/4GB/1TB/GeForce 0.148201
## ProductA541NA-GO342 (N3350/4GB/500GB/Linux) 0.000219 ***
## ProductA715-71G-59DH (i5-7300HQ/8GB/1TB/GeForce 0.134501
## ProductAlienware 15 0.221476
## ProductAlienware 17 0.183116
## ProductAspire 1 0.104209
## ProductAspire 3 0.453469
## ProductAspire 5 0.506234
## ProductAspire 7 0.200093
## ProductAspire A315-31 0.409392
## ProductAspire A315-51 0.566939
## ProductAspire A515-51G 0.524005
## ProductAspire A515-51G-32MX 0.438500
## ProductAspire A515-51G-37JS 0.417364
## ProductAspire A515-51G-59QF 0.401034
## ProductAspire A517-51G 0.601579
## ProductAspire A715-71G 0.301630
## ProductAspire E5-475 0.412769
## ProductAspire E5-575 0.538680
## ProductAspire E5-576G 0.573083
## ProductAspire E5-774G 0.686347
## ProductAspire ES1-523 0.384190
## ProductAspire ES1-531 0.486950
## ProductAspire ES1-533 0.477129
## ProductAspire ES1-572 0.468252
## ProductAspire F5-573G 0.490708
## ProductAspire F5-573G-510L 0.651041
## ProductAspire R7 0.869516
## ProductAspire VX5-591G 0.314336
## ProductB51-80 (i5-6200U/8GB/1008GB/Radeon 0.054716 .
## ProductB51-80 (i5-6200U/8GB/1TB/Radeon 0.184915
## ProductB51-80 (i7-6500U/4GB/1008GB/FHD/W7) 0.043169 *
## ProductB51-80 (i7-6500U/8GB/1008GB/Radeon 0.116842
## ProductBlade Pro 0.338478
## ProductBlade Stealth NA
## ProductC740-C9QX (3205U/2GB/32GB/Chrome 0.127162
## ProductCB5-132T-C9KK (N3160/4GB/32GB/Chrome 0.510887
## ProductChromebook 11 0.408870
## ProductChromebook 13 0.240514
## ProductChromebook 14 0.285014
## ProductChromebook 15 0.166274
## ProductChromebook 3 0.966916
## ProductChromebook C202SA 0.222007
## ProductChromebook C731-C78G 0.247715
## ProductChromebook C738T-C2EJ 0.547408
## ProductChromebook C910-C2ST 0.169230
## ProductChromebook CB5-571-C1DZ 0.631493
## ProductChromebook Flip 0.801854
## ProductChromebook N23 0.388187
## ProductChromebook Plus 0.681679
## ProductChromebook X360 0.259246
## ProductE402WA-GA007T (E2-6110/4GB/64GB/W10 0.015626 *
## ProductE402WA-GA010T (E2-6110/2GB/32GB/W10) 1.78e-05 ***
## ProductE5 774G 0.640088
## ProductEliteBook 1030 0.930641
## ProductElitebook 1040 0.952882
## ProductEliteBook 1040 0.840349
## ProductElitebook 820 0.825010
## ProductEliteBook 820 0.937884
## ProductElitebook 840 0.772927
## ProductEliteBook 840 0.662602
## ProductElitebook 850 0.528377
## ProductEliteBook 850 0.650090
## ProductElitebook Folio 0.730616
## ProductEliteBook Folio 0.978143
## ProductEliteBook x360 0.796006
## ProductENVY - 0.511923
## ProductEnvy 13-AB002nv 0.427957
## ProductEnvy 13-AB020nr 0.428119
## ProductEnvy 13-AB077cl 0.346582
## ProductEnvy 13-AD007nv 0.157705
## ProductEnvy 13-ad009n 0.219166
## ProductEnvy 17-U275cl 0.138390
## ProductEnvy x360 0.443958
## ProductES1-523-84K7 (A8-7410/8GB/256GB/FHD/W10) 0.429785
## ProductExtensa EX2540 0.594332
## ProductExtensa EX2540-58KR 0.578557
## ProductF756UX-T4201D (i7-7500U/8GB/128GB 0.061122 .
## ProductFlex 5 0.008902 **
## ProductFlexBook Edge 0.612069
## ProductFX502VM-AS73 (i7-7700HQ/16GB/1TB 0.166330
## ProductFX502VM-DM105T (i7-6700HQ/8GB/1TB/GeForce 0.103294
## ProductFX502VM-DM560T (i7-7700HQ/8GB/1TB 0.544291
## ProductFX503VD-E4022T (i7-7700HQ/8GB/1TB/GeForce 0.052070 .
## ProductFX503VM-E4007T (i7-7700HQ/16GB/1TB 0.052956 .
## ProductFX550IK-DM018T (FX-9830P/8GB/1TB/Radeon 0.399877
## ProductFX553VD-DM627T (i5-7300HQ/8GB/1TB 0.025041 *
## ProductFX553VD-FY647T (i7-7700HQ/8GB/256GB/GeForce 0.032177 *
## ProductFX753VD-GC007T (i7-7700HQ/8GB/1TB 0.044712 *
## ProductFX753VD-GC071T (i7-7700HQ/8GB/1TB/GeForce 0.115256
## ProductFX753VD-GC086T (i5-7300HQ/8GB/1TB 0.032400 *
## ProductFX753VD-GC461T (i7-7700HQ/16GB/1TB 0.158754
## ProductFX753VE-GC093 (i7-7700HQ/12GB/1TB/GeForce 0.061856 .
## ProductFX753VE-GC155T (i7-7700HQ/16GB/1TB 0.671643
## ProductG701VO-IH74K (i7-6820HK/32GB/2x 0.187927
## ProductG752VY-GC162T (i7-6700HQ/16GB/1TB 0.456105
## ProductGE62 Apache 0.014877 *
## ProductGE63VR 7RE 0.048831 *
## ProductGE63VR 7RF 0.054773 .
## ProductGE72 Apache 0.002661 **
## ProductGE72MVR 7RG 0.038958 *
## ProductGE72VR 6RF 0.074143 .
## ProductGE72VR Apache 0.265643
## ProductGE73VR 7RE 0.034885 *
## ProductGE73VR 7RF 0.028099 *
## ProductGL553VE-FY082T (i7-7700HQ/8GB/1TB 0.101334
## ProductGL62 6QF 0.016532 *
## ProductGL62M (i5-7300HQ/8GB/1TB 0.197577
## ProductGL62M 7RD 0.113186
## ProductGL62M 7RDX 0.384470
## ProductGL62M 7REX 0.256642
## ProductGL72M 7RDX 0.214503
## ProductGL72M 7REX 0.140246
## ProductGP62 7RDX 0.207316
## ProductGP62M 7RDX 0.381933
## ProductGP62M 7REX 0.141046
## ProductGP62M Leopard 0.235881
## ProductGP62MVR 6RF 0.155643
## ProductGP72M 7REX 0.149862
## ProductGP72MVR 7RFX 0.226990
## ProductGP72VR Leopard 0.196852
## ProductGram 14Z970 0.658048
## ProductGram 15Z970 0.672120
## ProductGram 15Z975 NA
## ProductGS40 Phantom 0.000409 ***
## ProductGS43VR 7RE 0.042354 *
## ProductGS60 Ghost 9.24e-05 ***
## ProductGS63VR 6RF 0.026916 *
## ProductGS63VR 7RF 0.020912 *
## ProductGS63VR 7RG 0.054842 .
## ProductGS70 Stealth 0.000877 ***
## ProductGS73VR 7RF 0.041608 *
## ProductGS73VR 7RG 0.034388 *
## ProductGS73VR Stealth 0.013482 *
## ProductGT62VR 6RD 0.061446 .
## ProductGT62VR 7RE 0.034246 *
## ProductGT72VR Dominator 0.034674 *
## ProductGT73EVR 7RE 0.028277 *
## ProductGT73VR Titan 0.030598 *
## ProductGT80S 6QE 0.001453 **
## ProductGT80S 6QF-074US 0.007099 **
## ProductGV62 7RD-1686NL 0.201222
## ProductGV62M 7RD 0.247156
## ProductIdeaPad 100S-14IBR 0.642625
## ProductIdeaPad 110-15IBR 0.324396
## ProductIdeaPad 110-15ISK 0.077266 .
## ProductIdeaPad 110-17ACL 0.014006 *
## ProductIdeaPad 120S-14IAP 0.843991
## ProductIdeaPad 300-17ISK 0.530965
## ProductIdeaPad 310-15ABR 0.004560 **
## ProductIdeaPad 310-15IKB 0.134282
## ProductIdeapad 310-15ISK 0.129449
## ProductIdeaPad 310-15ISK 0.121468
## ProductIdeaPad 320-14IAP 0.350251
## ProductIdeaPad 320-15ABR 0.000281 ***
## ProductIdeaPad 320-15AST 0.095168 .
## ProductIdeapad 320-15IAP 0.102435
## ProductIdeaPad 320-15IAP 0.317252
## ProductIdeaPad 320-15IKB 0.053541 .
## ProductIdeapad 320-15IKBN 0.152040
## ProductIdeaPad 320-15IKBN 0.118424
## ProductIdeapad 320-15IKBR 0.178289
## ProductIdeapad 320-15ISK 0.047500 *
## ProductIdeaPad 320-15ISK 0.069052 .
## ProductIdeaPad 320-17IKB 0.084203 .
## ProductIdeaPad 320-17IKBR 0.076979 .
## ProductIdeaPad 320-17ISK 0.082626 .
## ProductIdeaPad 320s-14IKB 0.058598 .
## ProductIdeaPad 500-15ISK 0.035613 *
## ProductIdeaPad 510-15IKB 0.102218
## ProductIdeaPad 510-15ISK 0.191068
## ProductIdeapad 510S-13IKB 0.042739 *
## ProductIdeaPad 510s-14IKB 0.177282
## ProductIdeapad 520-15IKBR 0.043325 *
## ProductIdeaPad 520s-14IKB 0.055205 .
## ProductIdeaPad 520S-14IKB 0.044716 *
## ProductIdeapad 700-15ISK 0.031411 *
## ProductIdeaPad 720S-13IKB 0.005191 **
## ProductIdeaPad 720S-14IKB 0.005666 **
## ProductIdeaPad Y700-15ACZ 0.000303 ***
## ProductIdeaPad Y700-15ISK 0.129935
## ProductIdeaPad Y900-17ISK 0.010007 *
## ProductIdeaPad Y910-17ISK 0.350049
## ProductInspiron 3168 0.505163
## ProductInspiron 3179 0.547175
## ProductInspiron 3552 0.218037
## ProductInspiron 3567 0.198862
## ProductInspiron 3576 0.290623
## ProductInspiron 5368 0.355387
## ProductInspiron 5370 0.430369
## ProductInspiron 5378 0.540621
## ProductInspiron 5379 0.480161
## ProductInspiron 5567 0.295678
## ProductInspiron 5568 0.940318
## ProductInspiron 5570 0.365269
## ProductInspiron 5577 0.013932 *
## ProductInspiron 5578 0.343022
## ProductInspiron 5579 0.500720
## ProductInspiron 5767 0.419511
## ProductInspiron 5770 0.541090
## ProductInspiron 7378 0.965478
## ProductInspiron 7559 0.104107
## ProductInspiron 7560 0.600084
## ProductInspiron 7567 0.033329 *
## ProductInspiron 7570 0.631601
## ProductInspiron 7577 0.032596 *
## ProductInspiron 7579 0.718014
## ProductInspiron 7773 0.118457
## ProductInspiron 7779 0.776961
## ProductInsprion 5767 0.444845
## ProductK146 (N3350/4GB/32GB/W10) 0.977408
## ProductK147 (N3350/4GB/32GB/FHD/W10) 0.547596
## ProductK556UR-DM621T (i7-7500U/8GB/256GB/GeForce 0.001635 **
## ProductK756UX-T4340T (i5-7200U/8GB/500GB 0.003439 **
## ProductL403NA-GA013TS (N3350/4GB/32GB/W10) 2.14e-05 ***
## ProductL502NA-GO052T (N3350/4GB/128GB/W10) 0.060804 .
## ProductLapBook 12.3 0.090061 .
## ProductLapbook 15,6 0.847814
## ProductLapBook 15.6" NA
## ProductLaptop MSI 0.002624 **
## ProductLatitude 3180 0.990329
## ProductLatitude 3380 0.833237
## ProductLatitude 3480 0.550287
## ProductLatitude 3570 0.301453
## ProductLatitude 3580 0.616041
## ProductLatitude 5289 0.569064
## ProductLatitude 5480 0.805603
## ProductLatitude 5490 0.893670
## ProductLatitude 5580 0.810548
## ProductLatitude 5590 0.783307
## ProductLatitude 7280 0.779707
## ProductLatitude 7390 0.477762
## ProductLatitude 7480 0.757653
## ProductLatitude E5270 0.754633
## ProductLatitude E5470 0.770797
## ProductLatitude E5570 0.540242
## ProductLatitude E7270 0.792879
## ProductLatitude E7470 0.833913
## ProductLegion Y520-15IKBN 0.677322
## ProductLegion Y720-15IKB 0.506088
## ProductLenovo IdeaPad 0.952022
## ProductLeopard GP72M 0.093176 .
## ProductLifeBook A556 0.411253
## ProductLifebook A557 0.906116
## ProductLifeBook A557 NA
## ProductMacBook 12" 0.002653 **
## ProductMacbook Air 0.000213 ***
## ProductMacBook Air 3.29e-05 ***
## ProductMacBook Pro NA
## ProductMateBook X NA
## ProductMi Notebook NA
## ProductN23 (N3060/4GB/128GB/W10) 0.007651 **
## ProductN42-20 Chromebook 0.105379
## ProductNitro 5 0.207383
## ProductNitro AN515-51 0.120448
## ProductNoteb Pav 0.187174
## ProductNotebook 9 0.054246 .
## ProductNotebook Odyssey NA
## ProductOmen - 0.003182 **
## ProductOmen 15-AX205na 0.001282 **
## ProductOmen 15-ce006nv 0.028798 *
## ProductOmen 15-ce007nv 0.003226 **
## ProductOmen 17-an006nv 0.014066 *
## ProductOmen 17-AN010nv 0.007287 **
## ProductOmen 17-an012dx 0.461606
## ProductOmen 17-W006na 0.439343
## ProductOmen 17-w207nv 0.019131 *
## ProductOmen 17-w212nv 0.002080 **
## ProductOmen 17-W295 0.004887 **
## ProductPavilion 14-BK001nv 0.082129 .
## ProductPavilion 15-AW003nv 0.360153
## ProductPavilion 15-BC000nv 0.044921 *
## ProductPavilion 15-cb003nv 0.000333 ***
## ProductPavilion 15-CK000nv 0.061723 .
## ProductPavilion Power 0.004411 **
## ProductPavilion x360 0.198603
## ProductPavilion X360 0.321422
## ProductPixelbook (Core NA
## ProductPL60 7RD NA
## ProductPortege A30-C-1CZ 0.732672
## ProductPortege X20W-D-10V 0.359210
## ProductPortege X30-D-10J 0.059364 .
## ProductPortege X30-D-10K 0.150203
## ProductPortege X30-D-10L 0.028121 *
## ProductPortege X30-D-10V 0.240783
## ProductPortege X30-D-10X 0.299267
## ProductPortege Z30-C-16H 0.359360
## ProductPortege Z30-C-16J 0.589196
## ProductPortégé Z30-C-16K 0.082804 .
## ProductPortege Z30-C-16L 0.592144
## ProductPortege Z30-C-16P 0.468455
## ProductPortege Z30-C-16Z 0.334444
## ProductPortégé Z30-C-188 0.963310
## ProductPortege Z30-C-1CV 0.691195
## ProductPortege Z30-C-1CW 0.410971
## ProductPortege Z30T-C-133 0.443512
## ProductPrecision 3510 0.465653
## ProductPrecision 3520 0.093744 .
## ProductPrecision 5520 0.685840
## ProductPrecision 7520 0.282522
## ProductPrecision 7720 0.068244 .
## ProductPrecision M5520 0.321059
## ProductPredator 17 0.422597
## ProductPredator G9-793 0.481988
## ProductPro P2540UA-AB51 0.217103
## ProductPro P2540UA-XO0192R 0.115143
## ProductPro P2540UA-XO0198T 0.000701 ***
## ProductPro P2540UA-XS51 0.816522
## ProductProbook 430 0.351558
## ProductProBook 430 0.242571
## ProductProbook 440 0.270775
## ProductProBook 440 0.328755
## ProductProbook 450 0.292178
## ProductProBook 450 0.230261
## ProductProbook 470 0.306479
## ProductProBook 470 0.309864
## ProductProbook 640 0.617733
## ProductProBook 640 0.577968
## ProductProbook 650 0.460619
## ProductProBook 650 0.579722
## ProductProBook x360 0.561723
## ProductQ304UA-BHI5T11 (i5-7200U/6GB/1TB/FHD/W10) 0.100224
## ProductQ524UQ-BHI7T15 (i7-7500U/12GB/2TB/GeForce 0.010908 *
## ProductQ534UX-BHI7T19 (i7-7500U/16GB/2TB 0.794775
## ProductR417NA-RS01 (N3350/4GB/32GB/W10) 4.29e-05 ***
## ProductR558UA-DM966T (i5-7200U/8GB/128GB/FHD/W10) 0.001158 **
## ProductROG G701VI 0.250943
## ProductRog G701VIK-BA060T 0.312816
## ProductROG G701VO 0.813374
## ProductROG G703VI-E5062T 0.356349
## ProductRog G752VL-GC088D 0.342353
## ProductRog G752VL-UH71T 0.554840
## ProductRog G752VS-BA171T 0.439273
## ProductROG G752VSK-GC493T 0.940212
## ProductRog G752VT-GC073T 0.832768
## ProductRog G752VY-GC229T 0.587117
## ProductRog GL502VM-DS74 0.165972
## ProductRog GL502VS 0.424082
## ProductRog GL552VW-CN470T 0.533897
## ProductRog GL552VW-DM201T 0.139533
## ProductRog GL553VE-DS74 0.311303
## ProductROG GL553VE-FY022 0.155547
## ProductRog GL553VE-FY052T 0.123529
## ProductRog GL702VM-GC017T 0.284323
## ProductRog GL702VM-GC354T 0.106018
## ProductRog GL702VS-BA023T 0.361488
## ProductRog GL702VS-GC095T 0.252930
## ProductROG GL703VD-GC028T 0.135081
## ProductRog GL752VW-T4308T 0.578903
## ProductRog GL753VD-GC042T 0.062266 .
## ProductRog GL753VD-GC082T 0.169172
## ProductRog GL753VE-DS74 0.195208
## ProductRog GL753VE-GC070T 0.192325
## ProductRog Strix 0.302048
## ProductROG Strix 0.200626
## ProductROG Zephyrus 0.190385
## ProductSatellite Pro 0.014762 *
## ProductSmartBook 130 0.079904 .
## ProductSmartBook 140 0.063424 .
## ProductSmartBook 141 0.420847
## ProductSmartbook 142 0.750249
## ProductSmartBook Edge NA
## ProductSP315-51 (i7-7500U/12GB/1TB/FHD/W10) 0.634629
## ProductSP714-51 (i7-7Y75/8GB/256GB/FHD/W10) 0.783858
## ProductSpectre 13-V100nv 0.485542
## ProductSpectre 13-V111dx 0.699882
## ProductSpectre Pro 0.915007
## ProductSpectre x360 0.821777
## ProductSpectre X360 0.636638
## ProductSpin 3 0.718802
## ProductSpin 5 0.892932
## ProductSpin SP111-31 0.158628
## ProductStream 11-Y000na 0.001191 **
## ProductStream 14-AX000nv 0.001965 **
## ProductStream 14-AX001nv 0.005928 **
## ProductStream 14-AX040wm 0.015471 *
## ProductSurface Laptop NA
## ProductSwift 3 0.776738
## ProductSwift 7 0.900629
## ProductSwift SF114-31-P5HY 0.431048
## ProductTecra A40-C-1DF 0.960493
## ProductTecra A40-C-1E5 0.747272
## ProductTecra A40-C-1KF 0.724224
## ProductTecra A50-C-1ZV 0.800988
## ProductTecra A50-C-218 0.514377
## ProductTecra A50-C-21G 0.359231
## ProductTecra A50-D-11D 0.743188
## ProductTecra A50-D-11M 0.847893
## ProductTecra X40-D-10G 0.046776 *
## ProductTecra X40-D-10H 0.405594
## ProductTecra X40-D-10Z 0.763463
## ProductTecra Z40-C-12X 0.687430
## ProductTecra Z40-C-12Z 0.195990
## ProductTecra Z40-C-136 0.136935
## ProductTecra Z40-C-161 0.575024
## ProductTecra Z50-C-140 0.171030
## ProductTecra Z50-C-144 0.984930
## ProductTecra Z50-D-10E NA
## ProductThinkpad 13 0.011561 *
## ProductThinkPad 13 0.004327 **
## ProductThinkpad E470 0.057189 .
## ProductThinkPad E470 0.010041 *
## ProductThinkPad E480 0.006936 **
## ProductThinkpad E570 0.017705 *
## ProductThinkPad E570 0.021401 *
## ProductThinkPad E580 0.011684 *
## ProductThinkPad L460 0.004741 **
## ProductThinkPad L470 0.001636 **
## ProductThinkpad L560 0.004932 **
## ProductThinkPad L570 0.004592 **
## ProductThinkPad P40 0.000785 ***
## ProductThinkpad P50 0.031859 *
## ProductThinkpad P51 < 2e-16 ***
## ProductThinkPad P51 0.128962
## ProductThinkpad P51s 0.268720
## ProductThinkPad P51s 0.536804
## ProductThinkPad P70 0.015946 *
## ProductThinkpad P71 0.000118 ***
## ProductThinkpad T460 0.000622 ***
## ProductThinkPad T460 0.001287 **
## ProductThinkpad T460p 0.004189 **
## ProductThinkpad T460s 3.85e-05 ***
## ProductThinkPad T460s 0.000103 ***
## ProductThinkpad T470 0.000298 ***
## ProductThinkPad T470 0.000257 ***
## ProductThinkpad T470p 0.153795
## ProductThinkPad T470p 0.000364 ***
## ProductThinkpad T470s 0.000127 ***
## ProductThinkPad T470s 8.00e-05 ***
## ProductThinkpad T560 0.000671 ***
## ProductThinkPad T560 0.000532 ***
## ProductThinkpad T570 0.349351
## ProductThinkPad T570 0.000254 ***
## ProductThinkpad X1 2.72e-05 ***
## ProductThinkPad X1 4.58e-05 ***
## ProductThinkpad X260 0.001095 **
## ProductThinkpad X270 0.000341 ***
## ProductThinkPad X270 0.000154 ***
## ProductThinkpad Yoga 4.40e-05 ***
## ProductThinkPad Yoga 5.95e-05 ***
## ProductTMX349-G2-M-50FS (i5-7200U/8GB/256GB/FHD/W10) 0.891694
## ProductTP501UA-CJ131T (i5-7200U/8GB/1TB/W10) 0.412314
## ProductTravelMate B 0.904204
## ProductTravelMate B117-M 0.090869 .
## ProductTravelMate P238-M 0.832195
## ProductTravelMate P259-G2 0.675589
## ProductUX410UA-GV097T (i3-7100U/4GB/256GB/FHD/W10) 0.495761
## ProductUX410UA-GV350T (i5-8250U/8GB/256GB/FHD/W10) 0.754295
## ProductUX430UQ-GV209R (i7-7500U/8GB/256GB/GeForce 0.821490
## ProductUX510UX-CN269T (i7-7500U/8GB/256GB 0.476365
## ProductV110-15IAP (N3350/4GB/128GB/No 0.497979
## ProductV110-15IAP (N3350/4GB/1TB/No 0.487857
## ProductV110-15IKB (i5-7200U/4GB/128GB/W10) 0.153417
## ProductV110-15ISK (3855U/4GB/500GB/W10) 0.281764
## ProductV110-15ISK (i3-6006U/4GB/128GB/W10) 0.166167
## ProductV110-15ISK (i3-6006U/4GB/1TB/No 0.318570
## ProductV110-15ISK (i3-6006U/4GB/1TB/Radeon 0.463158
## ProductV110-15ISK (i3-6006U/4GB/500GB/W10) 0.060457 .
## ProductV110-15ISK (i5-6200U/4GB/128GB/W10) 0.141338
## ProductV110-15ISK (i5-6200U/4GB/500GB/No 0.227880
## ProductV110-15ISK (i5-6200U/4GB/500GB/W10) 0.103218
## ProductV131 (X5-Z8350/4GB/32GB/FHD/W10) 0.520067
## ProductV142 (X5-Z8350/2GB/32GB/W10) NA
## ProductV310-15IKB (i5-7200U/4GB/1TB/FHD/W10) 0.300839
## ProductV310-15IKB (i5-7200U/4GB/1TB/No 0.126654
## ProductV310-15IKB (i5-7200U/8GB/1TB 0.088942 .
## ProductV310-15IKB (i7-7500U/4GB/1TB/FHD/W10) 0.039837 *
## ProductV310-15ISK (i3-6006U/4GB/128GB/FHD/No 0.109866
## ProductV310-15ISK (i3-6006U/4GB/1TB/FHD/W10) 0.113809
## ProductV310-15ISK (i3-6006U/4GB/500GB/No 0.054354 .
## ProductV310-15ISK (i5-6200U/4GB/1TB/FHD/No 0.131380
## ProductV310-15ISK (i5-7200U/4GB/1TB/FHD/W10) 0.097693 .
## ProductV310-15ISK (i5-7200U/8GB/1TB 0.093935 .
## ProductV320-17ISK (i3-6006U/4GB/500GB/FHD/No 0.023159 *
## ProductV330-15IKB (i3-7130U/4GB/128GB/FHD/W10) 0.040364 *
## ProductV330-15IKB (i5-8250U/4GB/256GB/FHD/W10) 0.028925 *
## ProductV330-15IKB (i5-8250U/4GB/500GB/FHD/W10) 0.028841 *
## ProductV330-15IKB (i5-8250U/8GB/256GB/FHD/W10) 0.060978 .
## ProductV330-15IKB (i7-8550U/8GB/256GB/FHD/W10) 0.041404 *
## ProductV510-15IKB (i5-7200U/8GB/256GB/FHD/No 0.219760
## ProductVivoBook E12 6.43e-05 ***
## ProductVivobook E200HA 0.001826 **
## ProductVivoBook E201NA 0.090467 .
## ProductVivoBook E403NA 1.70e-05 ***
## ProductVivoBook Flip 0.001247 **
## ProductVivoBook L402NA 0.000339 ***
## ProductVivobook Max 0.223024
## ProductVivoBook Max 0.001557 **
## ProductVivoBook Pro 0.118287
## ProductVivoBook S14 0.088066 .
## ProductVivoBook S15 0.531439
## ProductVivoBook X540YA-XX519T 0.033828 *
## ProductVivobook X541UV-DM1217T 0.259755
## ProductVostro 3559 0.420954
## ProductVostro 3568 0.368336
## ProductVostro 5370 0.657181
## ProductVostro 5468 0.620850
## ProductVostro 5471 0.542859
## ProductVostro 5568 0.500752
## ProductX505BP-BR019T (A9-9420/4GB/1TB/Radeon 0.392817
## ProductX540SA-RBPDN09 (N3710/4GB/1TB/W10) 6.97e-05 ***
## ProductX540UA-DM186 (i3-6006U/4GB/1TB/FHD/Linux) 0.007632 **
## ProductX541NA (N3350/4GB/1TB/FHD/W10) 0.017626 *
## ProductX541NA (N3350/4GB/1TB/Linux) 0.008079 **
## ProductX541NA (N4200/4GB/1TB/W10) 0.072938 .
## ProductX541NA-GO020T (N3350/4GB/1TB/W10) 0.003011 **
## ProductX541NA-GO121 (N4200/4GB/1TB/Linux) 0.087641 .
## ProductX541NA-GO414T (N3350/8GB/1TB/W10) 0.034128 *
## ProductX541NA-PD1003Y (N4200/4GB/500GB/W10) 0.003171 **
## ProductX541UA-DM1897 (i3-6006U/4GB/256GB/FHD/Linux) 0.005288 **
## ProductX541UV-DM1439T (i3-7100U/6GB/256GB/GeForce 0.053371 .
## ProductX542UQ-DM117 (i3-7100U/8GB/1TB/GeForce 0.221511
## ProductX542UQ-GO005 (i5-7200U/8GB/1TB/GeForce 0.006602 **
## ProductX550VX-XX015D (i5-6300HQ/4GB/1TB/GeForce 0.369848
## ProductX553SA-XX021T (N3050/4GB/500GB/W10) 0.039315 *
## ProductX553SA-XX031T (N3050/4GB/500GB/W10) 0.021906 *
## ProductX555BP-XX180T (A9-9420/4GB/1TB/Radeon 0.144925
## ProductX555QG-DM242T (A10-9620P/4GB/1TB 0.265324
## ProductX556UJ-XO044T (i7-6500U/4GB/500GB/GeForce 0.024320 *
## ProductX705UV-BX074T (i3-6006U/4GB/1TB/GeForce 0.091874 .
## ProductX751NV-TY001 (N4200/4GB/1TB/GeForce 0.274922
## ProductX751NV-TY001T (N4200/4GB/1TB/GeForce 0.341140
## ProductX751SV-TY001T (N3710/4GB/1TB/GeForce 0.295766
## ProductXPS 13 0.816405
## ProductXPS 15 0.336747
## ProductYoga 11e 0.000989 ***
## ProductYoga 500-14IBD 0.011802 *
## ProductYoga 500-14ISK 0.091950 .
## ProductYoga 500-15ISK 0.012814 *
## ProductYoga 510-15IKB 0.051172 .
## ProductYoga 520-14IKB 0.015198 *
## ProductYoga 700-11ISK 6.55e-08 ***
## ProductYoga 720-13IKB 0.002741 **
## ProductYoga 720-15IKB 0.208656
## ProductYoga 730 0.001092 **
## ProductYoga 900-13ISK 0.011186 *
## ProductYoga 900S-12ISK 5.24e-06 ***
## ProductYoga 910-13IKB 0.001433 **
## ProductYoga 920-13IKB 0.000128 ***
## ProductYoga Book 0.057299 .
## ProductZbook 15 0.261914
## ProductZBook 15 0.728407
## ProductZBook 15u 0.001564 **
## ProductZbook 17 0.932342
## ProductZBook 17 0.498097
## ProductZBook Studio NA
## ProductZenbook 3 0.068747 .
## ProductZenBook 3 0.049271 *
## ProductZenbook Flip 0.112795
## ProductZenBook Flip 0.476413
## ProductZenBook Pro 0.617661
## ProductZenBook UX305CA-UBM1 0.145105
## ProductZenBook UX310UA-FB485T 0.135239
## ProductZenBook UX310UA-WB71 0.600999
## ProductZenBook UX310UQ-GL026T 0.253442
## ProductZenbook UX330UA-AH5Q 0.443024
## ProductZenbook UX390UA 0.028090 *
## ProductZenbook UX410UA-GV027T 0.814221
## ProductZenBook UX410UA-GV183T 0.926509
## ProductZenbook UX430UA 0.918807
## ProductZenBook UX430UA 0.954969
## ProductZenBook UX430UN 0.897377
## ProductZenbook UX510UW-FI095T 0.293386
## ProductZenBook UX510UX-CN211T 0.763142
## ProductZenBook UX530UQ-PRO NA
## TypeNameGaming 0.396926
## TypeNameNetbook 0.417752
## TypeNameNotebook 0.814236
## TypeNameUltrabook 0.822498
## TypeNameWorkstation 0.046833 *
## Inches 0.762372
## ScreenResolution1440x900 0.219366
## ScreenResolution1600x900 0.644921
## ScreenResolution1920x1080 NA
## ScreenResolution2560x1440 0.066141 .
## ScreenResolution4K Ultra HD / Touchscreen 3840x2160 0.377700
## ScreenResolution4K Ultra HD 3840x2160 0.264996
## ScreenResolutionFull HD / Touchscreen 1920x1080 0.894388
## ScreenResolutionFull HD 1920x1080 0.417364
## ScreenResolutionIPS Panel 1366x768 0.778896
## ScreenResolutionIPS Panel 2560x1440 0.388773
## ScreenResolutionIPS Panel 4K Ultra HD / Touchscreen 3840x2160 0.076171 .
## ScreenResolutionIPS Panel 4K Ultra HD 3840x2160 0.042448 *
## ScreenResolutionIPS Panel Full HD / Touchscreen 1920x1080 0.099861 .
## ScreenResolutionIPS Panel Full HD 1366x768 0.943819
## ScreenResolutionIPS Panel Full HD 1920x1080 0.203613
## ScreenResolutionIPS Panel Full HD 1920x1200 NA
## ScreenResolutionIPS Panel Full HD 2160x1440 NA
## ScreenResolutionIPS Panel Full HD 2560x1440 0.049715 *
## ScreenResolutionIPS Panel Quad HD+ / Touchscreen 3200x1800 0.808864
## ScreenResolutionIPS Panel Quad HD+ 2560x1440 0.422337
## ScreenResolutionIPS Panel Quad HD+ 3200x1800 NA
## ScreenResolutionIPS Panel Retina Display 2304x1440 NA
## ScreenResolutionIPS Panel Retina Display 2560x1600 0.114747
## ScreenResolutionIPS Panel Retina Display 2736x1824 NA
## ScreenResolutionIPS Panel Retina Display 2880x1800 NA
## ScreenResolutionIPS Panel Touchscreen / 4K Ultra HD 3840x2160 0.303675
## ScreenResolutionIPS Panel Touchscreen 1366x768 0.551831
## ScreenResolutionIPS Panel Touchscreen 1920x1200 NA
## ScreenResolutionIPS Panel Touchscreen 2400x1600 NA
## ScreenResolutionIPS Panel Touchscreen 2560x1440 0.428659
## ScreenResolutionQuad HD+ / Touchscreen 3200x1800 0.457142
## ScreenResolutionQuad HD+ 3200x1800 0.129100
## ScreenResolutionTouchscreen / 4K Ultra HD 3840x2160 0.149917
## ScreenResolutionTouchscreen / Full HD 1920x1080 0.194909
## ScreenResolutionTouchscreen / Quad HD+ 3200x1800 0.789677
## ScreenResolutionTouchscreen 1366x768 0.522143
## ScreenResolutionTouchscreen 2256x1504 NA
## ScreenResolutionTouchscreen 2400x1600 NA
## ScreenResolutionTouchscreen 2560x1440 0.067618 .
## CpuAMD A10-Series 9620P 2.5GHz 0.898699
## CpuAMD A10-Series A10-9620P 2.5GHz NA
## CpuAMD A12-Series 9700P 2.5GHz NA
## CpuAMD A12-Series 9720P 2.7GHz 0.792324
## CpuAMD A12-Series 9720P 3.6GHz NA
## CpuAMD A4-Series 7210 2.2GHz 0.106842
## CpuAMD A6-Series 7310 2GHz NA
## CpuAMD A6-Series 9220 2.5GHz 0.237405
## CpuAMD A6-Series 9220 2.9GHz 0.560349
## CpuAMD A6-Series A6-9220 2.5GHz NA
## CpuAMD A8-Series 7410 2.2GHz NA
## CpuAMD A9-Series 9410 2.9GHz NA
## CpuAMD A9-Series 9420 2.9GHz 0.736352
## CpuAMD A9-Series 9420 3GHz 0.585517
## CpuAMD A9-Series A9-9420 3GHz NA
## CpuAMD E-Series 6110 1.5GHz NA
## CpuAMD E-Series 7110 1.8GHz NA
## CpuAMD E-Series 9000 2.2GHz 0.110179
## CpuAMD E-Series 9000e 1.5GHz NA
## CpuAMD E-Series E2-6110 1.5GHz NA
## CpuAMD E-Series E2-9000 2.2GHz 0.348924
## CpuAMD E-Series E2-9000e 1.5GHz NA
## CpuAMD FX 8800P 2.1GHz NA
## CpuAMD FX 9830P 3GHz NA
## CpuAMD Ryzen 1600 3.2GHz 0.184528
## CpuAMD Ryzen 1700 3GHz 0.222196
## CpuIntel Atom x5-Z8300 1.44GHz NA
## CpuIntel Atom x5-Z8350 1.44GHz NA
## CpuIntel Atom X5-Z8350 1.44GHz NA
## CpuIntel Atom x5-Z8550 1.44GHz NA
## CpuIntel Atom Z8350 1.92GHz NA
## CpuIntel Celeron Dual Core 3205U 1.5GHz NA
## CpuIntel Celeron Dual Core 3855U 1.6GHz 0.333202
## CpuIntel Celeron Dual Core N3050 1.6GHz 0.698467
## CpuIntel Celeron Dual Core N3060 1.60GHz 0.634313
## CpuIntel Celeron Dual Core N3060 1.6GHz 0.596585
## CpuIntel Celeron Dual Core N3350 1.1GHz 0.440296
## CpuIntel Celeron Dual Core N3350 2.0GHz NA
## CpuIntel Celeron Dual Core N3350 2GHz 0.168321
## CpuIntel Celeron Quad Core N3160 1.6GHz NA
## CpuIntel Celeron Quad Core N3450 1.1GHz NA
## CpuIntel Celeron Quad Core N3710 1.6GHz NA
## CpuIntel Core i3 6006U 2.0GHz 0.989737
## CpuIntel Core i3 6006U 2.2GHz 0.517400
## CpuIntel Core i3 6006U 2GHz 0.969830
## CpuIntel Core i3 6100U 2.1GHz 0.530060
## CpuIntel Core i3 6100U 2.3GHz 0.934306
## CpuIntel Core i3 7100U 2.4GHz 0.935454
## CpuIntel Core i3 7130U 2.7GHz 0.775072
## CpuIntel Core i5 1.3GHz 0.725933
## CpuIntel Core i5 1.6GHz NA
## CpuIntel Core i5 1.8GHz NA
## CpuIntel Core i5 2.0GHz 0.104505
## CpuIntel Core i5 2.3GHz 0.578911
## CpuIntel Core i5 2.9GHz 0.743605
## CpuIntel Core i5 3.1GHz NA
## CpuIntel Core i5 6200U 2.3GHz 0.692216
## CpuIntel Core i5 6260U 1.8GHz 0.748739
## CpuIntel Core i5 6300HQ 2.3GHz 0.929551
## CpuIntel Core i5 6300U 2.4GHz 0.479447
## CpuIntel Core i5 6440HQ 2.6GHz NA
## CpuIntel Core i5 7200U 2.50GHz 0.604759
## CpuIntel Core i5 7200U 2.5GHz 0.577024
## CpuIntel Core i5 7200U 2.70GHz 0.760901
## CpuIntel Core i5 7200U 2.7GHz 0.119958
## CpuIntel Core i5 7300HQ 2.5GHz 0.690993
## CpuIntel Core i5 7300U 2.6GHz 0.496639
## CpuIntel Core i5 7440HQ 2.8GHz 0.366023
## CpuIntel Core i5 7500U 2.7GHz 0.750150
## CpuIntel Core i5 7Y54 1.2GHz 0.524280
## CpuIntel Core i5 7Y57 1.2GHz 0.729482
## CpuIntel Core i5 8250U 1.6GHz 0.548459
## CpuIntel Core i7 2.2GHz 0.343766
## CpuIntel Core i7 2.7GHz 0.493656
## CpuIntel Core i7 2.8GHz 0.789158
## CpuIntel Core i7 2.9GHz NA
## CpuIntel Core i7 6500U 2.50GHz 0.414216
## CpuIntel Core i7 6500U 2.5GHz 0.389571
## CpuIntel Core i7 6560U 2.2GHz 0.542195
## CpuIntel Core i7 6600U 2.6GHz 0.510901
## CpuIntel Core i7 6700HQ 2.6GHz 0.728139
## CpuIntel Core i7 6820HK 2.7GHz 0.709101
## CpuIntel Core i7 6820HQ 2.7GHz 0.643438
## CpuIntel Core i7 6920HQ 2.9GHz NA
## CpuIntel Core i7 7500U 2.5GHz NA
## CpuIntel Core i7 7500U 2.7GHz 0.360795
## CpuIntel Core i7 7560U 2.4GHz 0.874688
## CpuIntel Core i7 7600U 2.8GHz 0.298329
## CpuIntel Core i7 7660U 2.5GHz 0.311392
## CpuIntel Core i7 7700HQ 2.7GHz 0.340923
## CpuIntel Core i7 7700HQ 2.8GHz 0.500428
## CpuIntel Core i7 7820HK 2.9GHz 0.455534
## CpuIntel Core i7 7820HQ 2.9GHz 0.133071
## CpuIntel Core i7 7Y75 1.3GHz 0.740257
## CpuIntel Core i7 8550U 1.8GHz 0.367643
## CpuIntel Core i7 8650U 1.9GHz 0.430116
## CpuIntel Core M 1.1GHz 0.354159
## CpuIntel Core M 1.2GHz 0.097291 .
## CpuIntel Core M 6Y30 0.9GHz NA
## CpuIntel Core M 6Y54 1.1GHz NA
## CpuIntel Core M 6Y75 1.2GHz NA
## CpuIntel Core M 7Y30 1.0GHz NA
## CpuIntel Core M m3 1.2GHz NA
## CpuIntel Core M M3-6Y30 0.9GHz 0.005513 **
## CpuIntel Core M m3-7Y30 2.2GHz 0.603874
## CpuIntel Core M m7-6Y75 1.2GHz NA
## CpuIntel Core M M7-6Y75 1.2GHz NA
## CpuIntel Pentium Dual Core 4405U 2.1GHz 0.255914
## CpuIntel Pentium Dual Core 4405Y 1.5GHz NA
## CpuIntel Pentium Dual Core N4200 1.1GHz NA
## CpuIntel Pentium Quad Core N3700 1.6GHz 0.987076
## CpuIntel Pentium Quad Core N3710 1.6GHz 0.684690
## CpuIntel Pentium Quad Core N4200 1.1GHz 0.425484
## CpuIntel Xeon E3-1505M V6 3GHz 0.655961
## CpuIntel Xeon E3-1535M v5 2.9GHz NA
## CpuIntel Xeon E3-1535M v6 3.1GHz NA
## CpuSamsung Cortex A72&A53 2.0GHz NA
## Ram 2.72e-05 ***
## Memory1.0TB Hybrid 0.038694 *
## Memory128GB Flash Storage 0.119410
## Memory128GB HDD NA
## Memory128GB SSD 0.085849 .
## Memory128GB SSD + 1TB HDD 0.328181
## Memory128GB SSD + 2TB HDD 0.604054
## Memory16GB Flash Storage 0.426365
## Memory16GB SSD NA
## Memory180GB SSD 0.181250
## Memory1TB HDD 0.073588 .
## Memory1TB HDD + 1TB HDD NA
## Memory1TB SSD 0.923502
## Memory1TB SSD + 1TB HDD 0.727917
## Memory240GB SSD NA
## Memory256GB Flash Storage 0.280369
## Memory256GB SSD 0.223348
## Memory256GB SSD + 1.0TB Hybrid 0.985455
## Memory256GB SSD + 1TB HDD 0.260362
## Memory256GB SSD + 256GB SSD 0.538288
## Memory256GB SSD + 2TB HDD 0.821834
## Memory256GB SSD + 500GB HDD 0.324300
## Memory2TB HDD 0.274532
## Memory32GB Flash Storage 0.028623 *
## Memory32GB HDD NA
## Memory32GB SSD NA
## Memory500GB HDD 0.039357 *
## Memory508GB Hybrid 0.095601 .
## Memory512GB Flash Storage NA
## Memory512GB SSD 0.609416
## Memory512GB SSD + 1.0TB Hybrid NA
## Memory512GB SSD + 1TB HDD 0.379257
## Memory512GB SSD + 256GB SSD NA
## Memory512GB SSD + 2TB HDD 0.204511
## Memory512GB SSD + 512GB SSD NA
## Memory64GB Flash Storage NA
## Memory64GB Flash Storage + 1TB HDD NA
## Memory64GB SSD NA
## Memory8GB SSD NA
## GpuAMD FirePro W4190M 0.028455 *
## GpuAMD FirePro W5130M NA
## GpuAMD FirePro W6150M 0.201266
## GpuAMD R17M-M1-70 NA
## GpuAMD R4 Graphics 0.299608
## GpuAMD Radeon 520 0.633403
## GpuAMD Radeon 530 0.519776
## GpuAMD Radeon 540 0.230420
## GpuAMD Radeon Pro 455 NA
## GpuAMD Radeon Pro 555 NA
## GpuAMD Radeon Pro 560 NA
## GpuAMD Radeon R2 NA
## GpuAMD Radeon R2 Graphics NA
## GpuAMD Radeon R3 NA
## GpuAMD Radeon R4 NA
## GpuAMD Radeon R4 Graphics NA
## GpuAMD Radeon R5 NA
## GpuAMD Radeon R5 430 NA
## GpuAMD Radeon R5 520 NA
## GpuAMD Radeon R5 M315 0.458716
## GpuAMD Radeon R5 M330 NA
## GpuAMD Radeon R5 M420 0.129404
## GpuAMD Radeon R5 M420X 0.271707
## GpuAMD Radeon R5 M430 0.739536
## GpuAMD Radeon R7 0.022121 *
## GpuAMD Radeon R7 Graphics NA
## GpuAMD Radeon R7 M360 NA
## GpuAMD Radeon R7 M365X 0.051459 .
## GpuAMD Radeon R7 M440 0.293673
## GpuAMD Radeon R7 M445 0.706878
## GpuAMD Radeon R7 M460 NA
## GpuAMD Radeon R7 M465 0.198888
## GpuAMD Radeon R9 M385 NA
## GpuAMD Radeon RX 540 NA
## GpuAMD Radeon RX 550 0.596431
## GpuAMD Radeon RX 560 NA
## GpuAMD Radeon RX 580 NA
## GpuARM Mali T860 MP4 NA
## GpuIntel Graphics 620 0.723508
## GpuIntel HD Graphics 0.068041 .
## GpuIntel HD Graphics 400 0.193356
## GpuIntel HD Graphics 405 0.652514
## GpuIntel HD Graphics 500 NA
## GpuIntel HD Graphics 505 NA
## GpuIntel HD Graphics 510 NA
## GpuIntel HD Graphics 515 0.435838
## GpuIntel HD Graphics 520 0.073354 .
## GpuIntel HD Graphics 530 0.814184
## GpuIntel HD Graphics 5300 NA
## GpuIntel HD Graphics 540 NA
## GpuIntel HD Graphics 6000 NA
## GpuIntel HD Graphics 615 NA
## GpuIntel HD Graphics 620 0.052493 .
## GpuIntel HD Graphics 620 0.530147
## GpuIntel HD Graphics 630 0.223638
## GpuIntel Iris Graphics 540 NA
## GpuIntel Iris Graphics 550 NA
## GpuIntel Iris Plus Graphics 640 0.674203
## GpuIntel Iris Plus Graphics 650 NA
## GpuIntel Iris Pro Graphics NA
## GpuIntel UHD Graphics 620 0.102594
## GpuNvidia GeForce 150MX 0.313861
## GpuNvidia GeForce 920 0.384337
## GpuNvidia GeForce 920M 0.626233
## GpuNvidia GeForce 920MX 0.476186
## GpuNvidia GeForce 920MX 0.172092
## GpuNvidia GeForce 930M 0.198374
## GpuNvidia GeForce 930MX 0.116014
## GpuNvidia GeForce 930MX 0.155246
## GpuNvidia GeForce 940M NA
## GpuNvidia GeForce 940MX 0.215003
## GpuNvidia GeForce 960M 0.047068 *
## GpuNvidia GeForce GT 940MX 0.076181 .
## GpuNvidia GeForce GTX 1050 0.068306 .
## GpuNvidia GeForce GTX 1050 Ti 0.055262 .
## GpuNvidia GeForce GTX 1050M 0.054522 .
## GpuNvidia GeForce GTX 1050Ti 0.115689
## GpuNvidia GeForce GTX 1060 0.007120 **
## GpuNvidia GeForce GTX 1070 0.001057 **
## GpuNvidia GeForce GTX 1070M 0.018438 *
## GpuNvidia GeForce GTX 1080 0.003656 **
## GpuNvidia GeForce GTX 930MX NA
## GpuNvidia GeForce GTX 940M 0.595399
## GpuNvidia GeForce GTX 940MX 0.415548
## GpuNvidia GeForce GTX 950M NA
## GpuNvidia GeForce GTX 960 0.688529
## GpuNvidia GeForce GTX 960<U+039C> 0.338594
## GpuNvidia GeForce GTX 960M NA
## GpuNvidia GeForce GTX 965M NA
## GpuNvidia GeForce GTX 970M NA
## GpuNvidia GeForce GTX 980 NA
## GpuNvidia GeForce GTX 980M NA
## GpuNvidia GeForce GTX1050 Ti NA
## GpuNvidia GeForce GTX1060 NA
## GpuNvidia GeForce GTX1080 NA
## GpuNvidia GeForce MX130 0.955999
## GpuNvidia GeForce MX150 NA
## GpuNvidia GTX 980 SLI NA
## GpuNvidia Quadro 3000M NA
## GpuNvidia Quadro M1000M 0.000429 ***
## GpuNvidia Quadro M1200 0.015173 *
## GpuNvidia Quadro M2000M NA
## GpuNvidia Quadro M2200 0.009601 **
## GpuNvidia Quadro M2200M NA
## GpuNvidia Quadro M3000M NA
## GpuNvidia Quadro M500M NA
## GpuNvidia Quadro M520M NA
## GpuNvidia Quadro M620 NA
## GpuNvidia Quadro M620M NA
## OpSysChrome OS NA
## OpSysLinux 0.337230
## OpSysMac OS X NA
## OpSysmacOS NA
## OpSysNo OS 0.281683
## OpSysWindows 10 0.040284 *
## OpSysWindows 10 S NA
## OpSysWindows 7 0.007207 **
## Weight 0.446766
## Frequenza NA
## Risoluzione1440x900 NA
## Risoluzione1600x900 NA
## Risoluzione1920x1080 NA
## Risoluzione1920x1200 NA
## Risoluzione2160x1440 NA
## Risoluzione2256x1504 NA
## Risoluzione2304x1440 NA
## Risoluzione2400x1600 NA
## Risoluzione2560x1440 NA
## Risoluzione2560x1600 NA
## Risoluzione2736x1824 NA
## Risoluzione2880x1800 NA
## Risoluzione3200x1800 NA
## Risoluzione3840x2160 NA
## Pixel NA
## SolidStateDiskTrue NA
## LogPrice < 2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 1.821e-16 on 483 degrees of freedom
## Multiple R-squared: 1, Adjusted R-squared: 1
## F-statistic: 1.866e+31 on 812 and 483 DF, p-value: < 2.2e-16
ncvTest(lm_full_t_no_OUTliers)
## Warning in summary.lm(model): essentially perfect fit: summary may be
## unreliable
## Non-constant Variance Score Test
## Variance formula: ~ fitted.values
## Chisquare = 16.07869, Df = 1, p = 6.0764e-05
null = lm(log(Price) ~ 1, data = filtered_data)
full = lm(log(Price) ~ ., data = filtered_data)
lm_fit = stepAIC(null, scope = list(upper = full), direction = "both", trace = FALSE)
## Warning: attempting model selection on an essentially perfect fit is
## nonsense
## Warning: attempting model selection on an essentially perfect fit is
## nonsense
## Warning: attempting model selection on an essentially perfect fit is
## nonsense
## Warning: attempting model selection on an essentially perfect fit is
## nonsense
## Warning: attempting model selection on an essentially perfect fit is
## nonsense
## Warning: attempting model selection on an essentially perfect fit is
## nonsense
## Warning: attempting model selection on an essentially perfect fit is
## nonsense
## Warning: attempting model selection on an essentially perfect fit is
## nonsense
drop1(lm_fit, test = 'F')
## Warning: attempting model selection on an essentially perfect fit is
## nonsense
## Single term deletions
##
## Model:
## log(Price) ~ LogPrice + Cpu + Memory + Risoluzione
## Df Sum of Sq RSS AIC F value Pr(>F)
## <none> 0.000 -89651
## LogPrice 1 74.525 74.525 -3375 9.2430e+31 < 2.2e-16 ***
## Cpu 110 0.000 0.000 -89144 7.7458e+00 < 2.2e-16 ***
## Memory 35 0.000 0.000 -89324 1.1595e+01 < 2.2e-16 ***
## Risoluzione 10 0.000 0.000 -89633 3.3294e+00 0.0002799 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1